TSVZ 2.65__tar.gz → 2.66__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-2.65 → tsvz-2.66}/PKG-INFO +1 -1
- {tsvz-2.65 → tsvz-2.66}/TSVZ.egg-info/PKG-INFO +1 -1
- {tsvz-2.65 → tsvz-2.66}/TSVZ.py +6 -3
- {tsvz-2.65 → tsvz-2.66}/setup.py +1 -1
- {tsvz-2.65 → tsvz-2.66}/LICENSE +0 -0
- {tsvz-2.65 → tsvz-2.66}/README.md +0 -0
- {tsvz-2.65 → tsvz-2.66}/TSVZ.egg-info/SOURCES.txt +0 -0
- {tsvz-2.65 → tsvz-2.66}/TSVZ.egg-info/dependency_links.txt +0 -0
- {tsvz-2.65 → tsvz-2.66}/TSVZ.egg-info/entry_points.txt +0 -0
- {tsvz-2.65 → tsvz-2.66}/TSVZ.egg-info/top_level.txt +0 -0
- {tsvz-2.65 → tsvz-2.66}/setup.cfg +0 -0
{tsvz-2.65 → tsvz-2.66}/PKG-INFO
RENAMED
{tsvz-2.65 → tsvz-2.66}/TSVZ.py
RENAMED
|
@@ -10,7 +10,7 @@ if os.name == 'nt':
|
|
|
10
10
|
elif os.name == 'posix':
|
|
11
11
|
import fcntl
|
|
12
12
|
|
|
13
|
-
version = '2.
|
|
13
|
+
version = '2.66'
|
|
14
14
|
author = 'pan@zopyr.us'
|
|
15
15
|
|
|
16
16
|
|
|
@@ -877,12 +877,15 @@ memoryOnly:{self.memoryOnly}
|
|
|
877
877
|
if self.verbose:
|
|
878
878
|
self.__teePrintOrNot(f"File {file.name} unlocked / released")
|
|
879
879
|
except Exception as e:
|
|
880
|
-
self.__teePrintOrNot(f"Failed to release file {file.name}: {e}",'error')
|
|
881
|
-
finally:
|
|
882
880
|
try:
|
|
883
881
|
self.writeLock.release() # Ensure the thread lock is always released
|
|
884
882
|
except Exception as e:
|
|
885
883
|
self.__teePrintOrNot(f"Failed to release writeLock for {file.name}: {e}",'error')
|
|
884
|
+
self.__teePrintOrNot(f"Failed to release file {file.name}: {e}",'error')
|
|
885
|
+
try:
|
|
886
|
+
self.writeLock.release() # Ensure the thread lock is always released
|
|
887
|
+
except Exception as e:
|
|
888
|
+
self.__teePrintOrNot(f"Failed to release writeLock for {file.name}: {e}",'error')
|
|
886
889
|
self.externalFileUpdateTime = getFileUpdateTimeNs(self._fileName)
|
|
887
890
|
|
|
888
891
|
|
{tsvz-2.65 → tsvz-2.66}/setup.py
RENAMED
{tsvz-2.65 → tsvz-2.66}/LICENSE
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|