/opt/alt/python37/lib64/python3.7/site-packages
NameSizeModeActions
aiohttp/-0755rm
aiohttp-3.8.1-py3.7.egg-info/-0755rm
cffi/-0755rm
cffi-1.14.0-py3.7.egg-info/-0755rm
Crypto/-0755rm
cryptography/-0755rm
cryptography-2.3-py3.7.egg-info/-0755rm
frozenlist/-0755rm
frozenlist-1.3.0a0-py3.7.egg-info/-0755rm
guppy/-0755rm
guppy3-3.0.8-py3.7.egg-info/-0755rm
lxml/-0755rm
lxml-4.4.3-py3.7.egg-info/-0755rm
markupsafe/-0755rm
MarkupSafe-2.0.1-py3.7.egg-info/-0755rm
multidict/-0755rm
multidict-5.1.0-py3.7.egg-info/-0755rm
mysqlclient-1.3.10-py3.7.egg-info/-0755rm
MySQLdb/-0755rm
numpy/-0755rm
numpy-1.13.3-py3.7.egg-info/-0755rm
psutil/-0755rm
psutil-5.8.0-py3.7.egg-info/-0755rm
psycopg2/-0755rm
psycopg2-2.6.2-py3.7.egg-info/-0755rm
pylve-2.1-py3.7.egg-info/-0755rm
pyrsistent/-0755rm
pyrsistent-0.14.11-py3.7.egg-info/-0755rm
simplejson/-0755rm
simplejson-3.12.0-py3.7.egg-info/-0755rm
sqlalchemy/-0755rm
SQLAlchemy-1.3.6-py3.7.egg-info/-0755rm
unshare-0.22-py3.7.egg-info/-0755rm
yaml/-0755rm
yarl/-0755rm
yarl-1.1.1-py3.7.egg-info/-0755rm
__pycache__/-0755rm
pvectorc.cpython-37m-x86_64-linux-gnu.so298080755editdlrm
pycrypto-2.6.1-py3.7.egg-info6660644editdlrm
PyYAML-3.13-py3.7.egg-info15150644editdlrm
README.txt1190644editdlrm
unshare.cpython-37m-x86_64-linux-gnu.so57600755editdlrm
_cffi_backend.cpython-37m-x86_64-linux-gnu.so1752960755editdlrm
_mysql.so1523500755editdlrm
_mysql_exceptions.py23350644editdlrm
_pyrsistent_version.py240644editdlrm
_yaml.cpython-37m-x86_64-linux-gnu.so2357120755editdlrm
Edit: /opt/alt/python37/lib64/python3.7/site-packages/_mysql_exceptions.py (2335B)
"""_mysql_exceptions: Exception classes for _mysql and MySQLdb. These classes are dictated by the DB API v2.0: https://www.python.org/dev/peps/pep-0249/ """ try: from exceptions import Exception, StandardError, Warning except ImportError: # Python 3 StandardError = Exception class MySQLError(StandardError): """Exception related to operation with MySQL.""" class Warning(Warning, MySQLError): """Exception raised for important warnings like data truncations while inserting, etc.""" class Error(MySQLError): """Exception that is the base class of all other error exceptions (not Warning).""" class InterfaceError(Error): """Exception raised for errors that are related to the database interface rather than the database itself.""" class DatabaseError(Error): """Exception raised for errors that are related to the database.""" class DataError(DatabaseError): """Exception raised for errors that are due to problems with the processed data like division by zero, numeric value out of range, etc.""" class OperationalError(DatabaseError): """Exception raised for errors that are related to the database's operation and not necessarily under the control of the programmer, e.g. an unexpected disconnect occurs, the data source name is not found, a transaction could not be processed, a memory allocation error occurred during processing, etc.""" class IntegrityError(DatabaseError): """Exception raised when the relational integrity of the database is affected, e.g. a foreign key check fails, duplicate key, etc.""" class InternalError(DatabaseError): """Exception raised when the database encounters an internal error, e.g. the cursor is not valid anymore, the transaction is out of sync, etc.""" class ProgrammingError(DatabaseError): """Exception raised for programming errors, e.g. table not found or already exists, syntax error in the SQL statement, wrong number of parameters specified, etc.""" class NotSupportedError(DatabaseError): """Exception raised in case a method or database API was used which is not supported by the database, e.g. requesting a .rollback() on a connection that does not support transaction or has transactions turned off."""