]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
a bit revert
authorHajime Nakagami <nakagami@gmail.com>
Sat, 13 Apr 2013 09:04:31 +0000 (18:04 +0900)
committerHajime Nakagami <nakagami@gmail.com>
Sat, 13 Apr 2013 09:04:31 +0000 (18:04 +0900)
lib/sqlalchemy/dialects/mysql/cymysql.py

index 6f9bc30d641320c58ba31c0f16b7c08f70189690..d9b43869c4c87db823528bf4386bd3935cee8bf1 100644 (file)
@@ -43,10 +43,6 @@ class MySQLDialect_cymysql(MySQLDialect_mysqldb):
     driver = 'cymysql'
 
     description_encoding = None
-# Py2K
-    supports_unicode_binds = True
-    supports_unicode_statements = True
-# end Py2K
 
     colspecs = util.update_copy(
         MySQLDialect.colspecs,
@@ -59,10 +55,6 @@ class MySQLDialect_cymysql(MySQLDialect_mysqldb):
     def dbapi(cls):
         return __import__('cymysql')
 
-    def do_execute(self, cursor, statement, parameters, context=None):
-        """Provide an implementation of *cursor.execute(statement, parameters)*."""
-        cursor.execute(statement, parameters)
-
     def _extract_error_code(self, exception):
         return exception.errno