X7ROOT File Manager
Current Path:
/opt/cloudlinux/venv/lib/python3.11/site-packages/cffi
opt
/
cloudlinux
/
venv
/
lib
/
python3.11
/
site-packages
/
cffi
/
ðŸ“
..
📄
__init__.py
(513 B)
ðŸ“
__pycache__
📄
_cffi_errors.h
(3.82 KB)
📄
_cffi_include.h
(14.45 KB)
📄
_embedding.h
(17.27 KB)
📄
api.py
(41.08 KB)
📄
backend_ctypes.py
(41.46 KB)
📄
cffi_opcode.py
(5.59 KB)
📄
commontypes.py
(2.63 KB)
📄
cparser.py
(43.19 KB)
📄
error.py
(877 B)
📄
ffiplatform.py
(3.95 KB)
📄
lock.py
(747 B)
📄
model.py
(21.26 KB)
📄
parse_c_type.h
(5.84 KB)
📄
pkgconfig.py
(4.27 KB)
📄
recompiler.py
(63.08 KB)
📄
setuptools_ext.py
(8.72 KB)
📄
vengine_cpy.py
(42.3 KB)
📄
vengine_gen.py
(26.06 KB)
📄
verifier.py
(10.99 KB)
Editing: error.py
class FFIError(Exception): __module__ = 'cffi' class CDefError(Exception): __module__ = 'cffi' def __str__(self): try: current_decl = self.args[1] filename = current_decl.coord.file linenum = current_decl.coord.line prefix = '%s:%d: ' % (filename, linenum) except (AttributeError, TypeError, IndexError): prefix = '' return '%s%s' % (prefix, self.args[0]) class VerificationError(Exception): """ An error raised when verification fails """ __module__ = 'cffi' class VerificationMissing(Exception): """ An error raised when incomplete structures are passed into cdef, but no verification has been done """ __module__ = 'cffi' class PkgConfigError(Exception): """ An error raised for missing modules in pkg-config """ __module__ = 'cffi'
Upload File
Create Folder