MCPcopy Index your code
hub / github.com/RustPython/RustPython / isdecimal

Method isdecimal

Lib/collections/__init__.py:1512–1513  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

1510 return self.data.isascii()
1511
1512 def isdecimal(self):
1513 return self.data.isdecimal()
1514
1515 def isdigit(self):
1516 return self.data.isdigit()

Callers 6

test_isdecimalMethod · 0.45
test_stringMethod · 0.45
test_method_checksumMethod · 0.45
_parseFunction · 0.45
parse_templateFunction · 0.45
builtin_str.pyFile · 0.45

Calls

no outgoing calls

Tested by 3

test_isdecimalMethod · 0.36
test_stringMethod · 0.36
test_method_checksumMethod · 0.36