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

Method get_integers

Lib/test/test_tcl.py:184–188  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

182 self.assertRaises(TclError,tcl.unsetvar,'a')
183
184 def get_integers(self):
185 return (0, 1, -1,
186 2**31-1, -2**31, 2**31, -2**31-1,
187 2**63-1, -2**63, 2**63, -2**63-1,
188 2**1000, -2**1000)
189
190 def test_getint(self):
191 tcl = self.interp.tk

Callers 4

test_getintMethod · 0.95
test_expr_bignumMethod · 0.95
test_passing_valuesMethod · 0.95
test_user_commandMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected