X7ROOT File Manager
Current Path:
/lib64/python3.6/site-packages/cffi
lib64
/
python3.6
/
site-packages
/
cffi
/
📁
..
📄
__init__.py
(479 B)
📁
__pycache__
📄
_cffi_errors.h
(3.71 KB)
📄
_cffi_include.h
(11.86 KB)
📄
_embedding.h
(15.65 KB)
📄
api.py
(39.72 KB)
📄
backend_ctypes.py
(41.1 KB)
📄
cffi_opcode.py
(5.59 KB)
📄
commontypes.py
(2.63 KB)
📄
cparser.py
(38.33 KB)
📄
error.py
(666 B)
📄
ffiplatform.py
(3.95 KB)
📄
lock.py
(747 B)
📄
model.py
(21.05 KB)
📄
parse_c_type.h
(5.84 KB)
📄
recompiler.py
(61.93 KB)
📄
setuptools_ext.py
(8.01 KB)
📄
vengine_cpy.py
(40.5 KB)
📄
vengine_gen.py
(26.05 KB)
📄
verifier.py
(10.94 KB)
Editing: error.py
class FFIError(Exception): pass class CDefError(Exception): 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 """ class VerificationMissing(Exception): """ An error raised when incomplete structures are passed into cdef, but no verification has been done """
Upload File
Create Folder