OXIESEC PANEL
- Current Dir:
/
/
snap
/
certbot
/
4737
/
lib
/
python3.12
/
site-packages
/
cffi
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
06/12/2025 06:19:50 PM
rwxr-xr-x
📄
__init__.py
513 bytes
06/12/2025 06:19:38 PM
rw-r--r--
📁
__pycache__
-
06/12/2025 06:19:48 PM
rwxr-xr-x
📄
_cffi_errors.h
3.82 KB
06/12/2025 06:19:38 PM
rw-r--r--
📄
_cffi_include.h
14.7 KB
06/12/2025 06:19:38 PM
rw-r--r--
📄
_embedding.h
18.35 KB
06/12/2025 06:19:38 PM
rw-r--r--
📄
_imp_emulation.py
2.89 KB
06/12/2025 06:19:38 PM
rw-r--r--
📄
_shimmed_dist_utils.py
2.18 KB
06/12/2025 06:19:38 PM
rw-r--r--
📄
api.py
41.18 KB
06/12/2025 06:19:38 PM
rw-r--r--
📄
backend_ctypes.py
41.46 KB
06/12/2025 06:19:38 PM
rw-r--r--
📄
cffi_opcode.py
5.6 KB
06/12/2025 06:19:38 PM
rw-r--r--
📄
commontypes.py
2.74 KB
06/12/2025 06:19:38 PM
rw-r--r--
📄
cparser.py
43.74 KB
06/12/2025 06:19:38 PM
rw-r--r--
📄
error.py
877 bytes
06/12/2025 06:19:38 PM
rw-r--r--
📄
ffiplatform.py
3.5 KB
06/12/2025 06:19:38 PM
rw-r--r--
📄
lock.py
747 bytes
06/12/2025 06:19:38 PM
rw-r--r--
📄
model.py
21.29 KB
06/12/2025 06:19:38 PM
rw-r--r--
📄
parse_c_type.h
5.84 KB
06/12/2025 06:19:38 PM
rw-r--r--
📄
pkgconfig.py
4.27 KB
06/12/2025 06:19:38 PM
rw-r--r--
📄
recompiler.py
63.83 KB
06/12/2025 06:19:38 PM
rw-r--r--
📄
setuptools_ext.py
8.66 KB
06/12/2025 06:19:38 PM
rw-r--r--
📄
vengine_cpy.py
42.73 KB
06/12/2025 06:19:38 PM
rw-r--r--
📄
vengine_gen.py
26.31 KB
06/12/2025 06:19:38 PM
rw-r--r--
📄
verifier.py
10.92 KB
06/12/2025 06:19:38 PM
rw-r--r--
Editing: lock.py
Close
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)