/
opt
/
alt
/
python27
/
lib64
/
python2.7
/
site-packages
/
/opt/alt/python27/lib64/python2.7/site-packages
mkdir
upload
Name
Size
Mode
Actions
cairo/
-
0755
rm
Crypto/
-
0755
rm
guppy/
-
0755
rm
lxml/
-
0755
rm
lxml-3.2.4-py2.7.egg-info/
-
0755
rm
markupsafe/
-
0755
rm
MarkupSafe-0.23-py2.7.egg-info/
-
0755
rm
matplotlib/
-
0755
rm
mpl_toolkits/
-
0755
rm
MySQLdb/
-
0755
rm
MySQL_python-1.2.5-py2.7.egg-info/
-
0755
rm
numpy/
-
0755
rm
numpy-1.11.3-py2.7.egg-info/
-
0755
rm
OpenSSL/
-
0755
rm
psutil/
-
0755
rm
psutil-0.7.0-py2.7.egg-info/
-
0755
rm
psycopg2/
-
0755
rm
pylve-2.1-py2.7.egg-info/
-
0755
rm
simplejson/
-
0755
rm
sqlalchemy/
-
0755
rm
SQLAlchemy-1.3.6-py2.7.egg-info/
-
0755
rm
yaml/
-
0755
rm
drv_libxml2.py
15160
0644
edit
dl
rm
drv_libxml2.pyc
11676
0644
edit
dl
rm
drv_libxml2.pyo
11676
0644
edit
dl
rm
guppy-0.1.10-py2.7.egg-info
1529
0644
edit
dl
rm
libxml2.py
345667
0644
edit
dl
rm
libxml2.pyc
465173
0644
edit
dl
rm
libxml2.pyo
465173
0644
edit
dl
rm
libxml2mod.so
927531
0755
edit
dl
rm
matplotlib-0.99.1.1-py2.7.egg-info
606
0644
edit
dl
rm
psycopg2-2.5.4-py2.7.egg-info
1934
0644
edit
dl
rm
pycrypto-2.6.1-py2.7.egg-info
666
0644
edit
dl
rm
pylab.py
90
0644
edit
dl
rm
pylab.pyc
255
0644
edit
dl
rm
pylab.pyo
255
0644
edit
dl
rm
pyOpenSSL-0.10-py2.7.egg-info
580
0644
edit
dl
rm
python_unshare-0.2-py2.7.egg-info
678
0644
edit
dl
rm
PyYAML-3.10-py2.7.egg-info
1765
0644
edit
dl
rm
README
119
0644
edit
dl
rm
simplejson-2.2.0-py2.7.egg-info
1403
0644
edit
dl
rm
unshare.so
5800
0755
edit
dl
rm
_mysql.so
141548
0644
edit
dl
rm
_mysql_exceptions.py
2352
0644
edit
dl
rm
_mysql_exceptions.pyc
4411
0644
edit
dl
rm
_mysql_exceptions.pyo
4413
0644
edit
dl
rm
_psutil_linux.so
9000
0755
edit
dl
rm
_psutil_posix.so
5608
0755
edit
dl
rm
_yaml.so
183936
0644
edit
dl
rm
Edit:
/opt/alt/python27/lib64/python2.7/site-packages/_mysql_exceptions.py
(2352B)
"""_mysql_exceptions: Exception classes for _mysql and MySQLdb. These classes are dictated by the DB API v2.0: http://www.python.org/topics/database/DatabaseAPI-2.0.html """ 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."""
Save
cmd:
run