Searched refs:PyExc_ArgError (Results 1 – 3 of 3) sorted by relevance
/external/python/cpython2/Modules/_ctypes/ |
D | ctypes.h | 381 extern PyObject *PyExc_ArgError;
|
D | callproc.c | 1148 _ctypes_extend_error(PyExc_ArgError, "argument %d: ", i+1); in _ctypes_callproc() 1155 _ctypes_extend_error(PyExc_ArgError, "argument %d: ", i+1); in _ctypes_callproc() 1161 _ctypes_extend_error(PyExc_ArgError, "argument %d: ", i+1); in _ctypes_callproc()
|
D | _ctypes.c | 131 PyObject *PyExc_ArgError; variable 5743 PyExc_ArgError = PyErr_NewException("ctypes.ArgumentError", NULL, NULL); in init_ctypes() 5744 if (PyExc_ArgError) { in init_ctypes() 5745 Py_INCREF(PyExc_ArgError); in init_ctypes() 5746 PyModule_AddObject(m, "ArgumentError", PyExc_ArgError); in init_ctypes()
|