MCPcopy Index your code
hub / github.com/python/cpython / isdecimal

Method isdecimal

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

Source from the content-addressed store, hash-verified

1550 return self.data.isascii()
1551
1552 def isdecimal(self):
1553 return self.data.isdecimal()
1554
1555 def isdigit(self):
1556 return self.data.isdigit()

Callers 5

test_isdecimalMethod · 0.80
test_stringMethod · 0.80
test_method_checksumMethod · 0.80
_parseFunction · 0.80
parse_templateFunction · 0.80

Calls

no outgoing calls

Tested by 3

test_isdecimalMethod · 0.64
test_stringMethod · 0.64
test_method_checksumMethod · 0.64