From: Ants Aasma Date: Wed, 11 Jul 2007 23:08:00 +0000 (+0000) Subject: missed an override of type engine comparison that is now the same as default, removed it X-Git-Tag: rel_0_4_6~120 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3ebdc4d2f74f1274651fa1d88c9f65d54bdac133;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git missed an override of type engine comparison that is now the same as default, removed it --- diff --git a/lib/sqlalchemy/types.py b/lib/sqlalchemy/types.py index 07bc3c2507..9a8e418a7d 100644 --- a/lib/sqlalchemy/types.py +++ b/lib/sqlalchemy/types.py @@ -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