]> 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:06:57 +0000 (12:06 -0500)
commitcd1baf6572baa31230e88624b7e5df87608d01c7
tree84d37ceb7582a1ca36277a401e39cd0d0752bf50
parent2ac2bbd3508843a200b6245225bef3bc4631fb41
- 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
setup.cfg