]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
(no commit message)
authorMike Bayer <mike_mp@zzzcomputing.com>
Sat, 23 Jul 2005 05:20:24 +0000 (05:20 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sat, 23 Jul 2005 05:20:24 +0000 (05:20 +0000)
lib/sqlalchemy/schema.py

index 8c9d6f1e4c5549ecd320dc767052acc112b1b67f..c840392a26ff11ccfc26082a57d21c1c84e64a5c 100644 (file)
@@ -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):