MCPcopy Create free account
hub / github.com/PierreGode/Ragnar / TRLock

Function TRLock

pager_lib/tqdm/std.py:67–73  ·  view source on GitHub ↗

threading RLock

(*args, **kwargs)

Source from the content-addressed store, hash-verified

65
66
67def TRLock(*args, **kwargs):
68 """threading RLock"""
69 try:
70 from threading import RLock
71 return RLock(*args, **kwargs)
72 except (ImportError, OSError): # pragma: no cover
73 pass
74
75
76class TqdmDefaultWriteLock:

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected