Searched refs:getargs_L (Results 1 – 2 of 2) sorted by relevance
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
D | test_getargs2.py | 213 from _testcapi import getargs_L 222 self.assertEqual(3, getargs_L(3.14)) 229 self.assertRaises(DeprecationWarning, getargs_L, 3.14) 231 self.assertRaises(TypeError, getargs_L, "Hello") 232 self.assertEqual(99, getargs_L(Long())) 233 self.assertEqual(99, getargs_L(Int())) 235 self.assertRaises(OverflowError, getargs_L, LLONG_MIN-1) 236 self.assertEqual(LLONG_MIN, getargs_L(LLONG_MIN)) 237 self.assertEqual(LLONG_MAX, getargs_L(LLONG_MAX)) 238 self.assertRaises(OverflowError, getargs_L, LLONG_MAX+1) [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/ |
D | _testcapimodule.c | 945 getargs_L(PyObject *self, PyObject *args) in getargs_L() function 1674 {"getargs_L", getargs_L, METH_VARARGS},
|