SQLCustomType endswith
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user