PATH: //lib64/python3.9/site-packages/cffi
FILE_BARU
CREATE
FOLDER_BARU
MKDIR
UPLOAD_FILE
GO
[ .. KEMBALI ]
📄 __init__.py
↓
X
📁 __pycache__/
X
📄 _cffi_errors.h
↓
X
📄 _cffi_include.h
↓
X
📄 _embedding.h
↓
X
📄 api.py
↓
X
📄 backend_ctypes.py
↓
X
📄 cffi_opcode.py
↓
X
📄 commontypes.py
↓
X
📄 cparser.py
↓
X
📄 error.py
↓
X
📄 ffiplatform.py
↓
X
📄 lock.py
↓
X
📄 model.py
↓
X
📄 parse_c_type.h
↓
X
📄 pkgconfig.py
↓
X
📄 recompiler.py
↓
X
📄 setuptools_ext.py
↓
X
📄 vengine_cpy.py
↓
X
📄 vengine_gen.py
↓
X
📄 verifier.py
↓
X
SAVING...
BERHASIL DIUBAH!
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'
SIMPAN PERUBAHAN