multiCMD 1.31__tar.gz → 1.32__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.31
3
+ Version: 1.32
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.31
3
+ Version: 1.32
4
4
  Summary: Run commands simultaneously
5
5
  Home-page: https://github.com/yufei-pan/multiCMD
6
6
  Author: Yufei Pan
@@ -18,7 +18,7 @@ import re
18
18
  import itertools
19
19
  import signal
20
20
 
21
- version = '1.31'
21
+ version = '1.32'
22
22
  __version__ = version
23
23
 
24
24
  __running_threads = []
@@ -232,7 +232,7 @@ _BRACKET_RX = re.compile(r'\[([^\]]+)\]')
232
232
  _ALPHANUM = string.digits + string.ascii_letters
233
233
  _ALPHA_IDX = {c: i for i, c in enumerate(_ALPHANUM)}
234
234
 
235
- def _expand_piece(piece: str, vars_: dict[str, str]) -> list[str]:
235
+ def _expand_piece(piece, vars_):
236
236
  """Turn one comma-separated element from inside [...] into a list of strings."""
237
237
  piece = piece.strip()
238
238
 
@@ -267,7 +267,7 @@ def _expand_piece(piece: str, vars_: dict[str, str]) -> list[str]:
267
267
  # plain token or ${var}
268
268
  return [vars_.get(piece, piece)]
269
269
 
270
- def _expand_ranges_fast(inStr: str) -> list[str]:
270
+ def _expand_ranges_fast(inStr):
271
271
  global __variables
272
272
  segments: list[list[str]] = []
273
273
  pos = 0
File without changes
File without changes
File without changes