]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
missed an override of type engine comparison that is now the same as default, removed it
authorAnts Aasma <ants.aasma@gmail.com>
Wed, 11 Jul 2007 23:08:00 +0000 (23:08 +0000)
committerAnts Aasma <ants.aasma@gmail.com>
Wed, 11 Jul 2007 23:08:00 +0000 (23:08 +0000)
lib/sqlalchemy/types.py

index 07bc3c250739853eec6be9c86af16f28d281c7d7..9a8e418a7d645694fc85c79d35192b776abb7b3d 100644 (file)
@@ -222,9 +222,6 @@ class String(TypeEngine):
     def get_dbapi_type(self, dbapi):
         return dbapi.STRING
 
-    def compare_values(self, x, y):
-        return x == y
-
 class Unicode(String):
     def __init__(self, length=None, **kwargs):
         kwargs['convert_unicode'] = True