multiCMD 1.45__tar.gz → 1.46__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.4
2
2
  Name: multiCMD
3
- Version: 1.45
3
+ Version: 1.46
4
4
  Summary: Run commands simultaneously
5
5
  Home-page: https://github.com/yufei-pan/multiCMD
6
6
  Author: Yufei Pan
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: multiCMD
3
- Version: 1.45
3
+ Version: 1.46
4
4
  Summary: Run commands simultaneously
5
5
  Home-page: https://github.com/yufei-pan/multiCMD
6
6
  Author: Yufei Pan
@@ -23,7 +23,7 @@ import time
23
23
  from pprint import pformat
24
24
 
25
25
  #%% global vars
26
- version = '1.45'
26
+ version = '1.46'
27
27
  __version__ = version
28
28
  COMMIT_DATE = '2026-03-05'
29
29
  __running_threads = set()
@@ -58,8 +58,10 @@ class Task:
58
58
  def __repr__(self):
59
59
  return f"""Task(command={pformat(self.command)},
60
60
  returncode={self.returncode!r},
61
- stdout={'\n' + pformat(self.stdout) if self.stdout else '[]'},
62
- stderr={'\n' + pformat(self.stderr) if self.stderr else '[]'},
61
+ stdout=
62
+ {pformat(self.stdout)},
63
+ stderr=
64
+ {pformat(self.stderr)},
63
65
  stop={self.stop!r})"""
64
66
 
65
67
  def __str__(self):
File without changes
File without changes
File without changes