Searched refs:getargs_Y (Results 1 – 4 of 4) sorted by relevance
/external/python/cpython2/Lib/test/ |
D | test_getargs2.py | 816 from _testcapi import getargs_Y 818 self.assertIs(getargs_Y(obj), obj) 819 self.assertRaises(TypeError, getargs_Y, 'str') 821 self.assertRaises(TypeError, getargs_Y, u'unicode') 822 self.assertRaises(TypeError, getargs_Y, None) 823 self.assertRaises(TypeError, getargs_Y, memoryview(obj)) 824 self.assertRaises(TypeError, getargs_Y, buffer(obj))
|
/external/python/cpython3/Lib/test/ |
D | test_getargs2.py | 943 from _testcapi import getargs_Y 945 self.assertIs(getargs_Y(obj), obj) 946 self.assertRaises(TypeError, getargs_Y, b'bytes') 947 self.assertRaises(TypeError, getargs_Y, 'str') 948 self.assertRaises(TypeError, getargs_Y, None) 949 self.assertRaises(TypeError, getargs_Y, memoryview(obj))
|
/external/python/cpython2/Modules/ |
D | _testcapimodule.c | 1280 getargs_Y(PyObject *self, PyObject *args) in getargs_Y() function 2724 {"getargs_Y", getargs_Y, METH_VARARGS},
|
/external/python/cpython3/Modules/ |
D | _testcapimodule.c | 1268 getargs_Y(PyObject *self, PyObject *args) in getargs_Y() function 4656 {"getargs_Y", getargs_Y, METH_VARARGS},
|