From 3ebdc4d2f74f1274651fa1d88c9f65d54bdac133 Mon Sep 17 00:00:00 2001 From: Ants Aasma Date: Wed, 11 Jul 2007 23:08:00 +0000 Subject: [PATCH] missed an override of type engine comparison that is now the same as default, removed it --- lib/sqlalchemy/types.py | 3 --- 1 file changed, 3 deletions(-) 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 -- 2.47.3