Home
last modified time | relevance | path

Searched refs:isdecimal (Results 1 – 7 of 7) sorted by relevance

/external/python/cpython2/Tools/pybench/
DUnicode.py398 s.isdecimal()
408 s.isdecimal()
418 s.isdecimal()
428 s.isdecimal()
438 s.isdecimal()
/external/python/cpython2/Lib/
DUserString.py93 def isdecimal(self): return self.data.isdecimal() member in UserString
/external/python/cpython2/Lib/test/
Dtest_unicodedata.py33 u"01"[char.isdecimal()],
44 u"01"[(char + u'123').isdecimal()],
Dtest_bool.py232 self.assertIs(unicode("0123", 'ascii').isdecimal(), True)
233 self.assertIs(unicode("xyz", 'ascii').isdecimal(), False)
Dtest_unicode.py398 self.assertFalse(ch.isdecimal(), '{!r} is not decimal.'.format(ch))
400 self.assertTrue(ch.isdecimal(), '{!r} is decimal.'.format(ch))
/external/python/cpython2/Doc/howto/
Dpyporting.rst222 isdecimal
/external/python/cpython2/Doc/library/
Dstdtypes.rst1403 .. method:: unicode.isdecimal()