TSVZ 3.13__tar.gz → 3.14__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.
- {tsvz-3.13 → tsvz-3.14}/PKG-INFO +1 -1
- {tsvz-3.13 → tsvz-3.14}/TSVZ.egg-info/PKG-INFO +1 -1
- {tsvz-3.13 → tsvz-3.14}/TSVZ.py +3 -3
- {tsvz-3.13 → tsvz-3.14}/README.md +0 -0
- {tsvz-3.13 → tsvz-3.14}/TSVZ.egg-info/SOURCES.txt +0 -0
- {tsvz-3.13 → tsvz-3.14}/TSVZ.egg-info/dependency_links.txt +0 -0
- {tsvz-3.13 → tsvz-3.14}/TSVZ.egg-info/entry_points.txt +0 -0
- {tsvz-3.13 → tsvz-3.14}/TSVZ.egg-info/top_level.txt +0 -0
- {tsvz-3.13 → tsvz-3.14}/setup.cfg +0 -0
- {tsvz-3.13 → tsvz-3.14}/setup.py +0 -0
{tsvz-3.13 → tsvz-3.14}/PKG-INFO
RENAMED
{tsvz-3.13 → tsvz-3.14}/TSVZ.py
RENAMED
|
@@ -22,7 +22,7 @@ if os.name == 'nt':
|
|
|
22
22
|
elif os.name == 'posix':
|
|
23
23
|
import fcntl
|
|
24
24
|
|
|
25
|
-
version = '3.
|
|
25
|
+
version = '3.14'
|
|
26
26
|
__version__ = version
|
|
27
27
|
author = 'pan@zopyr.us'
|
|
28
28
|
|
|
@@ -289,7 +289,7 @@ def _processLine(line,taskDic,correctColumnNum,verbose = False,teeLogger = None,
|
|
|
289
289
|
elif lineCache[0] == DEFAULTS_INDICATOR_KEY:
|
|
290
290
|
if verbose:
|
|
291
291
|
__teePrintOrNot(f"Empty defaults line found: {line}",teeLogger=teeLogger)
|
|
292
|
-
defaults
|
|
292
|
+
defaults.clear()
|
|
293
293
|
else:
|
|
294
294
|
if verbose:
|
|
295
295
|
__teePrintOrNot(f"Key {lineCache[0]} found with empty value, deleting such key's representaion",teeLogger=teeLogger)
|
|
@@ -319,7 +319,7 @@ def _processLine(line,taskDic,correctColumnNum,verbose = False,teeLogger = None,
|
|
|
319
319
|
if lineCache[0] == DEFAULTS_INDICATOR_KEY:
|
|
320
320
|
if verbose:
|
|
321
321
|
__teePrintOrNot(f"Defaults line found: {line}",teeLogger=teeLogger)
|
|
322
|
-
defaults = lineCache
|
|
322
|
+
defaults[:] = lineCache
|
|
323
323
|
return correctColumnNum , []
|
|
324
324
|
taskDic[lineCache[0]] = lineCache
|
|
325
325
|
if verbose:
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{tsvz-3.13 → tsvz-3.14}/setup.py
RENAMED
|
File without changes
|