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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pyallel
3
- Version: 1.3.6
3
+ Version: 1.3.7
4
4
  Summary: Run and handle the output of multiple executables in pyallel (as in parallel)
5
5
  Home-page: https://github.com/Danthewaann/pyallel
6
6
  License: MIT
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "pyallel"
3
- version = "1.3.6"
3
+ version = "1.3.7"
4
4
  description = "Run and handle the output of multiple executables in pyallel (as in parallel)"
5
5
  authors = ["Daniel Black <danielcrblack@gmail.com>"]
6
6
  license = "MIT"
@@ -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(self._last_printed):
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