Closed
Description
In version 1.4.0 of mysqlclient
they moved the _mysql
module into the MySQLdb
package (PyMySQL/mysqlclient#293).
Will you be interested in accepting a pull request that adds support for this version of mysqlclient
? It can be done in a backward compatible way:
try:
import _mysql
except ImportError:
from MySQLdb import _mysql
Metadata
Metadata
Assignees
Labels
No labels