TSVZ 3.14__py3-none-any.whl → 3.15__py3-none-any.whl

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.2
2
2
  Name: TSVZ
3
- Version: 3.14
3
+ Version: 3.15
4
4
  Summary: An simple in memory wrapper around a TSV file to function as a database
5
5
  Home-page: https://github.com/yufei-pan/TSVZ
6
6
  Author: Yufei Pan
@@ -0,0 +1,6 @@
1
+ TSVZ.py,sha256=ubb2xT12PS2kIMMQDDkSUcjexKI3UnYkjqJwOF6uOp8,67076
2
+ TSVZ-3.15.dist-info/METADATA,sha256=IDGBJjOXdGAg3o5U96P_GHaCspv1F_Y5HRFSrazvdH4,1826
3
+ TSVZ-3.15.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
4
+ TSVZ-3.15.dist-info/entry_points.txt,sha256=WeXidyV5yKCRLaVsnAY35xGa08QgytOfvr1CK9aescI,60
5
+ TSVZ-3.15.dist-info/top_level.txt,sha256=OPx4LvOpaYykaos7oL_jGaObSWXxLzhHiWLuz-K147g,5
6
+ TSVZ-3.15.dist-info/RECORD,,
TSVZ.py CHANGED
@@ -22,7 +22,7 @@ if os.name == 'nt':
22
22
  elif os.name == 'posix':
23
23
  import fcntl
24
24
 
25
- version = '3.14'
25
+ version = '3.15'
26
26
  __version__ = version
27
27
  author = 'pan@zopyr.us'
28
28
 
@@ -235,7 +235,10 @@ def __teePrintOrNot(message,level = 'info',teeLogger = None):
235
235
  """
236
236
  try:
237
237
  if teeLogger:
238
- teeLogger.teelog(message,level)
238
+ try:
239
+ teeLogger.teelog(message,level,callerStackDepth=3)
240
+ except:
241
+ teeLogger.teelog(message,level)
239
242
  else:
240
243
  print(message,flush=True)
241
244
  except Exception as e:
@@ -1,6 +0,0 @@
1
- TSVZ.py,sha256=Z2GXsKWfXFrjIHSg3gRldub4d6YvGt1fMTzuh-EZMjk,66968
2
- TSVZ-3.14.dist-info/METADATA,sha256=9L4OSMoMJKZrPr4MyPZn74S-1nHnf3LmSI_Kdd1u1ks,1826
3
- TSVZ-3.14.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
4
- TSVZ-3.14.dist-info/entry_points.txt,sha256=WeXidyV5yKCRLaVsnAY35xGa08QgytOfvr1CK9aescI,60
5
- TSVZ-3.14.dist-info/top_level.txt,sha256=OPx4LvOpaYykaos7oL_jGaObSWXxLzhHiWLuz-K147g,5
6
- TSVZ-3.14.dist-info/RECORD,,
File without changes