/opt/alt/python38/lib64/python3.8/site-packages/cffi
NameSizeModeActions
__pycache__/-0755rm
api.py420640644editdlrm
backend_ctypes.py424540644editdlrm
cffi_opcode.py57240644editdlrm
commontypes.py26890644editdlrm
cparser.py420710644editdlrm
error.py8770644editdlrm
ffiplatform.py40460644editdlrm
lock.py7470644editdlrm
model.py216820644editdlrm
parse_c_type.h59760644editdlrm
pkgconfig.py43740644editdlrm
recompiler.py632170644editdlrm
setuptools_ext.py88480644editdlrm
vengine_cpy.py433140644editdlrm
vengine_gen.py266760644editdlrm
verifier.py112070644editdlrm
_cffi_errors.h38560644editdlrm
_cffi_include.h134820644editdlrm
_embedding.h174110644editdlrm
__init__.py5130644editdlrm
Edit: /opt/alt/python38/lib64/python3.8/site-packages/cffi/error.py (877B)
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'