htmlcmp 1.0.8__tar.gz → 1.0.9__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {htmlcmp-1.0.8 → htmlcmp-1.0.9}/PKG-INFO +1 -1
- {htmlcmp-1.0.8 → htmlcmp-1.0.9}/pyproject.toml +1 -1
- {htmlcmp-1.0.8 → htmlcmp-1.0.9}/src/htmlcmp/compare_output.py +2 -2
- {htmlcmp-1.0.8 → htmlcmp-1.0.9}/src/htmlcmp/compare_output_server.py +4 -4
- {htmlcmp-1.0.8 → htmlcmp-1.0.9}/src/htmlcmp.egg-info/PKG-INFO +1 -1
- {htmlcmp-1.0.8 → htmlcmp-1.0.9}/README.md +0 -0
- {htmlcmp-1.0.8 → htmlcmp-1.0.9}/setup.cfg +0 -0
- {htmlcmp-1.0.8 → htmlcmp-1.0.9}/src/htmlcmp/__init__.py +0 -0
- {htmlcmp-1.0.8 → htmlcmp-1.0.9}/src/htmlcmp/common.py +0 -0
- {htmlcmp-1.0.8 → htmlcmp-1.0.9}/src/htmlcmp/html_render_diff.py +0 -0
- {htmlcmp-1.0.8 → htmlcmp-1.0.9}/src/htmlcmp/tidy_output.py +0 -0
- {htmlcmp-1.0.8 → htmlcmp-1.0.9}/src/htmlcmp.egg-info/SOURCES.txt +0 -0
- {htmlcmp-1.0.8 → htmlcmp-1.0.9}/src/htmlcmp.egg-info/dependency_links.txt +0 -0
- {htmlcmp-1.0.8 → htmlcmp-1.0.9}/src/htmlcmp.egg-info/entry_points.txt +0 -0
- {htmlcmp-1.0.8 → htmlcmp-1.0.9}/src/htmlcmp.egg-info/requires.txt +0 -0
- {htmlcmp-1.0.8 → htmlcmp-1.0.9}/src/htmlcmp.egg-info/top_level.txt +0 -0
|
@@ -68,8 +68,8 @@ def submit_compare_dirs(a, b, executor, diff_output=None, **kwargs):
|
|
|
68
68
|
"right_dirs_missing": [],
|
|
69
69
|
}
|
|
70
70
|
|
|
71
|
-
left = sorted(a.iterdir())
|
|
72
|
-
right = sorted(b.iterdir())
|
|
71
|
+
left = sorted(p.name for p in a.iterdir())
|
|
72
|
+
right = sorted(p.name for p in b.iterdir())
|
|
73
73
|
|
|
74
74
|
left_files = sorted(
|
|
75
75
|
[name for name in left if (a / name).is_file() and comparable_file(a / name)]
|
|
@@ -49,8 +49,8 @@ class Observer:
|
|
|
49
49
|
def init_compare(a, b):
|
|
50
50
|
common_path = a / Config.path_a
|
|
51
51
|
|
|
52
|
-
left = sorted(a.iterdir())
|
|
53
|
-
right = sorted(b.iterdir())
|
|
52
|
+
left = sorted(p.name for p in a.iterdir())
|
|
53
|
+
right = sorted(p.name for p in b.iterdir())
|
|
54
54
|
|
|
55
55
|
common = [name for name in left if name in right]
|
|
56
56
|
|
|
@@ -139,8 +139,8 @@ def root():
|
|
|
139
139
|
def print_tree(a, b):
|
|
140
140
|
common_path = a / Config.path_a
|
|
141
141
|
|
|
142
|
-
left = sorted(a.iterdir())
|
|
143
|
-
right = sorted(b.iterdir())
|
|
142
|
+
left = sorted(p.name for p in a.iterdir())
|
|
143
|
+
right = sorted(p.name for p in b.iterdir())
|
|
144
144
|
|
|
145
145
|
left_files = sorted(
|
|
146
146
|
[
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|