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.
- {multicmd-1.45 → multicmd-1.46}/PKG-INFO +1 -1
- {multicmd-1.45 → multicmd-1.46}/multiCMD.egg-info/PKG-INFO +1 -1
- {multicmd-1.45 → multicmd-1.46}/multiCMD.py +5 -3
- {multicmd-1.45 → multicmd-1.46}/README.md +0 -0
- {multicmd-1.45 → multicmd-1.46}/multiCMD.egg-info/SOURCES.txt +0 -0
- {multicmd-1.45 → multicmd-1.46}/multiCMD.egg-info/dependency_links.txt +0 -0
- {multicmd-1.45 → multicmd-1.46}/multiCMD.egg-info/entry_points.txt +0 -0
- {multicmd-1.45 → multicmd-1.46}/multiCMD.egg-info/requires.txt +0 -0
- {multicmd-1.45 → multicmd-1.46}/multiCMD.egg-info/top_level.txt +0 -0
- {multicmd-1.45 → multicmd-1.46}/setup.cfg +0 -0
- {multicmd-1.45 → multicmd-1.46}/setup.py +0 -0
|
@@ -23,7 +23,7 @@ import time
|
|
|
23
23
|
from pprint import pformat
|
|
24
24
|
|
|
25
25
|
#%% global vars
|
|
26
|
-
version = '1.
|
|
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=
|
|
62
|
-
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|