Lines Matching defs:arg

1485 Py_off_t_converter(PyObject *arg, void *addr)
1488 *((Py_off_t *)addr) = PyLong_AsLongLong(arg);
1490 *((Py_off_t *)addr) = PyLong_AsLong(arg);
2341 _posix_traverse(PyObject *module, visitproc visit, void *arg)
4051 if (!path->wide) { /* Default arg: "." */
5881 "execv() arg 2 must be a tuple or list");
5886 PyErr_SetString(PyExc_ValueError, "execv() arg 2 must not be empty");
5896 "execv() arg 2 first element cannot be empty");
6560 "spawnv() arg 2 must be a tuple or list");
6565 "spawnv() arg 2 cannot be empty");
6579 "spawnv() arg 2 must contain only strings");
6586 "spawnv() arg 2 first element cannot be empty");
6666 "spawnve() arg 2 must be a tuple or list");
6671 "spawnve() arg 2 cannot be empty");
6676 "spawnve() arg 3 must be a mapping object");
6696 "spawnv() arg 2 first element cannot be empty");
9726 "readv() arg 2 must be a sequence");
9843 "preadv2() arg 2 must be a sequence");
10381 "writev() arg 2 must be a sequence");
10485 "pwritev() arg 2 must be a sequence");
11609 conv_confname(PyObject *arg, int *valuep, struct constdef *table,
11612 if (PyLong_Check(arg)) {
11613 int value = _PyLong_AsInt(arg);
11626 if (!PyUnicode_Check(arg)) {
11631 confname = PyUnicode_AsUTF8(arg);
11741 conv_path_confname(PyObject *arg, int *valuep)
11743 return conv_confname(arg, valuep, posix_constants_pathconf,
11972 conv_confstr_confname(PyObject *arg, int *valuep)
11974 return conv_confname(arg, valuep, posix_constants_confstr,
12529 conv_sysconf_confname(PyObject *arg, int *valuep)
12531 return conv_confname(arg, valuep, posix_constants_sysconf,
14017 if (!path_wide) { /* Default arg: "." */
14102 if (!path_narrow) { /* Default arg: "." */