pyallel 1.3.6__tar.gz → 1.3.7__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.
- {pyallel-1.3.6 → pyallel-1.3.7}/PKG-INFO +1 -1
- {pyallel-1.3.6 → pyallel-1.3.7}/pyproject.toml +1 -1
- {pyallel-1.3.6 → pyallel-1.3.7}/src/pyallel/printer.py +3 -1
- {pyallel-1.3.6 → pyallel-1.3.7}/LICENSE +0 -0
- {pyallel-1.3.6 → pyallel-1.3.7}/README.md +0 -0
- {pyallel-1.3.6 → pyallel-1.3.7}/src/pyallel/__init__.py +0 -0
- {pyallel-1.3.6 → pyallel-1.3.7}/src/pyallel/colours.py +0 -0
- {pyallel-1.3.6 → pyallel-1.3.7}/src/pyallel/constants.py +0 -0
- {pyallel-1.3.6 → pyallel-1.3.7}/src/pyallel/errors.py +0 -0
- {pyallel-1.3.6 → pyallel-1.3.7}/src/pyallel/main.py +0 -0
- {pyallel-1.3.6 → pyallel-1.3.7}/src/pyallel/parser.py +0 -0
- {pyallel-1.3.6 → pyallel-1.3.7}/src/pyallel/process.py +0 -0
- {pyallel-1.3.6 → pyallel-1.3.7}/src/pyallel/process_group.py +0 -0
- {pyallel-1.3.6 → pyallel-1.3.7}/src/pyallel/process_group_manager.py +0 -0
- {pyallel-1.3.6 → pyallel-1.3.7}/src/pyallel/py.typed +0 -0
|
@@ -335,7 +335,9 @@ class InteractiveConsolePrinter(ConsolePrinter):
|
|
|
335
335
|
# comparing the last printed lines with the new lines that were generated
|
|
336
336
|
print(f"\033[{num_last_printed_lines}A", end="")
|
|
337
337
|
cursor_line = 0
|
|
338
|
-
for cur_line, line_parts in enumerate(
|
|
338
|
+
for cur_line, line_parts in enumerate(
|
|
339
|
+
self._last_printed[:num_lines_to_print]
|
|
340
|
+
):
|
|
339
341
|
# If the current line is not the same as it's newly generated version, we update the line
|
|
340
342
|
if line_parts[1] != self._to_print[cur_line][1]:
|
|
341
343
|
include_prefix, line, end = self._to_print[cur_line]
|
|
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
|
|
File without changes
|