Searched refs:isnumeric (Results 1 – 9 of 9) sorted by relevance
/third_party/skia/third_party/externals/angle2/src/tests/restricted_traces/ |
D | gen_restricted_traces.py | 302 assert context.isnumeric(), 'Trace context number is not numeric: %s' % context 310 assert context.isnumeric(), 'Trace context number is not numeric: %s' % context
|
/third_party/python/Lib/test/ |
D | test_unicodedata.py | 35 "01"[char.isnumeric()], 46 "01"[(char + '123').isnumeric()],
|
D | test_bool.py | 209 self.assertIs("0123".isnumeric(), True) 210 self.assertIs("xyz".isnumeric(), False)
|
D | test_unicode.py | 726 self.assertRaises(TypeError, "abc".isnumeric, 42) 730 self.assertFalse(ch.isnumeric(), '{!a} is not numeric.'.format(ch)) 733 self.assertTrue(ch.isnumeric(), '{!a} is numeric.'.format(ch))
|
D | test_zlib.py | 784 elif not v[-1].isnumeric():
|
/third_party/python/Lib/collections/ |
D | __init__.py | 1468 def isnumeric(self): member in UserString 1469 return self.data.isnumeric()
|
/third_party/python/Doc/howto/ |
D | pyporting.rst | 236 isnumeric
|
/third_party/python/Doc/library/ |
D | stdtypes.rst | 1716 ``c.isdigit()``, or ``c.isnumeric()``. 1782 .. method:: str.isnumeric()
|
/third_party/python/Misc/ |
D | HISTORY | 17978 - Patch #1494554: Update unicodedata.numeric and unicode.isnumeric to
|