gitextract_hp90r54w/ ├── .gitignore ├── .travis.yml ├── GPL-2.0 ├── HISTORY ├── INSTALL ├── MANIFEST.in ├── MySQLdb/ │ ├── __init__.py │ ├── connections.py │ ├── constants/ │ │ ├── CLIENT.py │ │ ├── CR.py │ │ ├── ER.py │ │ ├── FIELD_TYPE.py │ │ ├── FLAG.py │ │ ├── REFRESH.py │ │ └── __init__.py │ ├── converters.py │ ├── cursors.py │ ├── release.py │ └── times.py ├── README.md ├── _mysql.c ├── _mysql_exceptions.py ├── doc/ │ ├── FAQ.rst │ ├── Makefile │ ├── MySQLdb.constants.rst │ ├── MySQLdb.rst │ ├── _mysql.rst │ ├── _mysql_exceptions.rst │ ├── conf.py │ ├── index.rst │ ├── make.bat │ ├── modules.rst │ └── user_guide.rst ├── metadata.cfg ├── pymemcompat.h ├── setup.cfg ├── setup.py ├── setup_common.py ├── setup_posix.py ├── setup_windows.py ├── site.cfg ├── tests/ │ ├── capabilities.py │ ├── configdb.py │ ├── dbapi20.py │ ├── default.cnf │ ├── test_MySQLdb_capabilities.py │ ├── test_MySQLdb_dbapi20.py │ ├── test_MySQLdb_nonstandard.py │ └── travis.cnf └── tox.ini