/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/error.py (666B)
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 """