]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
- Fixed bug which prevented MySQLdb-based dialects (e.g.
authorMike Bayer <mike_mp@zzzcomputing.com>
Mon, 3 Feb 2014 17:04:51 +0000 (12:04 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Mon, 3 Feb 2014 17:04:51 +0000 (12:04 -0500)
commit8b08b1a35b85c24349226c34e6834f4f60db3c6f
tree5a9f2e63ecc8cb1983b301bb4cd62580bb151926
parent37d1f8983ce4bfbfd517cf8db7a44ed785c8474f
- Fixed bug which prevented MySQLdb-based dialects (e.g.
pymysql) from working in Py3K, where a check for "connection
charset" would fail due to Py3K's more strict value comparison
rules.  The call in question  wasn't taking the database
version into account in any case as the server version was
still None at that point, so the method overall has been
simplified to rely upon connection.character_set_name().
[ticket:2933]
doc/build/changelog/changelog_08.rst
lib/sqlalchemy/connectors/mysqldb.py
lib/sqlalchemy/dialects/mysql/pymysql.py
lib/sqlalchemy/sql/sqltypes.py
setup.cfg