Home
last modified time | relevance | path

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

/third_party/python/Lib/test/
Dtest_unicodedata.py32 "01"[char.isdecimal()],
43 "01"[(char + '123').isdecimal()],
Dtest_bool.py207 self.assertIs("0123".isdecimal(), True)
208 self.assertIs("xyz".isdecimal(), False)
Dtest_unicode.py700 self.assertFalse(ch.isdecimal(), '{!a} is not decimal.'.format(ch))
702 self.assertTrue(ch.isdecimal(), '{!a} is decimal.'.format(ch))
/third_party/python/Lib/collections/
D__init__.py1456 def isdecimal(self): member in UserString
1457 return self.data.isdecimal()
/third_party/python/Doc/howto/
Dpyporting.rst234 isdecimal
/third_party/python/Doc/library/
Dstdtypes.rst1715 of the following returns ``True``: ``c.isalpha()``, ``c.isdecimal()``,
1737 .. method:: str.isdecimal()