Lines Matching refs:arg2
27 #define _PyCapsule_GetPointer(arg1, arg2) \
29 #define _PyBytes_FromStringAndSize(arg1, arg2) \
30 PyString_FromStringAndSize((arg1), (arg2))
36 #define _PyCapsule_GetPointer(arg1, arg2) \
37 PyCapsule_GetPointer((arg1), (arg2))
38 #define _PyBytes_FromStringAndSize(arg1, arg2) \
39 PyBytes_FromStringAndSize((arg1), (arg2))
46 static struct scripting_context *get_args(PyObject *args, const char *name, PyObject **arg2)
48 int cnt = 1 + !!arg2;
51 if (!PyArg_UnpackTuple(args, name, 1, cnt, &context, arg2))