SQLCustomType endswith

This commit is contained in:
mdipierro
2014-02-14 21:03:52 -06:00
parent caee53e778
commit 19f8f6bf3c
2 changed files with 7 additions and 1 deletions
+1 -1
View File
@@ -1 +1 @@
Version 2.8.2-stable+timestamp.2014.02.11.08.10.56
Version 2.8.2-stable+timestamp.2014.02.14.21.02.54
+6
View File
@@ -9731,6 +9731,12 @@ class SQLCustomType(object):
except TypeError:
return False
def endswith(self, text=None):
try:
return self.type.endswith(self, text)
except TypeError:
return False
def __getslice__(self, a=0, b=100):
return None