/usr/lib64/python3.6/site-packages/cffi
NameSizeModeActions
__pycache__/-0755rm
api.py406730644editdlrm
backend_ctypes.py420860644editdlrm
cffi_opcode.py57240644editdlrm
commontypes.py26890644editdlrm
cparser.py392500644editdlrm
error.py6660644editdlrm
ffiplatform.py40460644editdlrm
lock.py7470644editdlrm
model.py215520644editdlrm
parse_c_type.h59760644editdlrm
recompiler.py634120644editdlrm
setuptools_ext.py81980644editdlrm
vengine_cpy.py414700644editdlrm
vengine_gen.py266760644editdlrm
verifier.py112070644editdlrm
_cffi_errors.h38040644editdlrm
_cffi_include.h121490644editdlrm
_embedding.h160300644editdlrm
__init__.py4790644editdlrm
Edit: /usr/lib64/python3.6/site-packages/cffi/lock.py (747B)
import sys if sys.version_info < (3,): try: from thread import allocate_lock except ImportError: from dummy_thread import allocate_lock else: try: from _thread import allocate_lock except ImportError: from _dummy_thread import allocate_lock ##import sys ##l1 = allocate_lock ##class allocate_lock(object): ## def __init__(self): ## self._real = l1() ## def __enter__(self): ## for i in range(4, 0, -1): ## print sys._getframe(i).f_code ## print ## return self._real.__enter__() ## def __exit__(self, *args): ## return self._real.__exit__(*args) ## def acquire(self, f): ## assert f is False ## return self._real.acquire(f)