mirror of
https://github.com/python/cpython.git
synced 2025-11-11 14:44:57 +00:00
Fixed misplaced comment.
This commit is contained in:
commit
89072047b8
1 changed files with 6 additions and 6 deletions
|
|
@ -268,6 +268,12 @@ xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
|
||||||
PyAPI_FUNC(PyObject *) PyObject_Call(PyObject *callable_object,
|
PyAPI_FUNC(PyObject *) PyObject_Call(PyObject *callable_object,
|
||||||
PyObject *args, PyObject *kwargs);
|
PyObject *args, PyObject *kwargs);
|
||||||
|
|
||||||
|
/*
|
||||||
|
Call a callable Python object, callable_object, with
|
||||||
|
arguments and keywords arguments. The 'args' argument can not be
|
||||||
|
NULL.
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef Py_LIMITED_API
|
#ifndef Py_LIMITED_API
|
||||||
PyAPI_FUNC(PyObject*) _PyStack_AsTuple(
|
PyAPI_FUNC(PyObject*) _PyStack_AsTuple(
|
||||||
PyObject **stack,
|
PyObject **stack,
|
||||||
|
|
@ -349,12 +355,6 @@ xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
|
||||||
const char *where);
|
const char *where);
|
||||||
#endif /* Py_LIMITED_API */
|
#endif /* Py_LIMITED_API */
|
||||||
|
|
||||||
/*
|
|
||||||
Call a callable Python object, callable_object, with
|
|
||||||
arguments and keywords arguments. The 'args' argument can not be
|
|
||||||
NULL.
|
|
||||||
*/
|
|
||||||
|
|
||||||
PyAPI_FUNC(PyObject *) PyObject_CallObject(PyObject *callable_object,
|
PyAPI_FUNC(PyObject *) PyObject_CallObject(PyObject *callable_object,
|
||||||
PyObject *args);
|
PyObject *args);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue