From: Mike Bayer Date: Sat, 23 Jul 2005 05:20:24 +0000 (+0000) Subject: (no commit message) X-Git-Tag: rel_0_1_0~855 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=876f8680b112b1a2ac188f7f2e647d241feac182;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git --- diff --git a/lib/sqlalchemy/schema.py b/lib/sqlalchemy/schema.py index 8c9d6f1e4c..c840392a26 100644 --- a/lib/sqlalchemy/schema.py +++ b/lib/sqlalchemy/schema.py @@ -139,9 +139,6 @@ class Column(SchemaItem): def __gt__(self, other): return self._impl.__gt__(other) def __ge__(self, other): return self._impl.__ge__(other) def __str__(self): return self._impl.__str__() - def like(self, other):return self._impl.like(other) - def startswith(self, other):return self._impl.startswith(other) - def endswith(self, other):return self._impl.endswith(other) class Relation(SchemaItem):