mirror of
https://github.com/python/cpython.git
synced 2025-12-04 00:30:19 +00:00
PyArg_UnpackTuple(): New argument unpacking function suggested by Jim
Fulton, based on code Jim supplied.
This commit is contained in:
parent
4855b02554
commit
e4616e6752
2 changed files with 61 additions and 0 deletions
|
|
@ -13,6 +13,7 @@ extern DL_IMPORT(int) PyArg_Parse(PyObject *, char *, ...);
|
|||
extern DL_IMPORT(int) PyArg_ParseTuple(PyObject *, char *, ...);
|
||||
extern DL_IMPORT(int) PyArg_ParseTupleAndKeywords(PyObject *, PyObject *,
|
||||
char *, char **, ...);
|
||||
extern DL_IMPORT(int) PyArg_UnpackTuple(PyObject *, char *, int, int, ...);
|
||||
extern DL_IMPORT(PyObject *) Py_BuildValue(char *, ...);
|
||||
|
||||
extern DL_IMPORT(int) PyArg_VaParse(PyObject *, char *, va_list);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue