diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-12-06 11:46:17 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-12-06 11:46:17 (GMT) |
commit | 89072047b86e90f415d4d7727733150b89f72b32 (patch) | |
tree | e9c3f24a5d34432c9fe9c829271dac4d83cc8764 /Include | |
parent | b38e83df332e786fe9f0080aa158555cdf1a93c0 (diff) | |
parent | b0f75c520ee882295b0d2884469056ebf0d0568b (diff) | |
download | cpython-89072047b86e90f415d4d7727733150b89f72b32.zip cpython-89072047b86e90f415d4d7727733150b89f72b32.tar.gz cpython-89072047b86e90f415d4d7727733150b89f72b32.tar.bz2 |
Fixed misplaced comment.
Diffstat (limited to 'Include')
-rw-r--r-- | Include/abstract.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Include/abstract.h b/Include/abstract.h index 3dfac65..f135afa 100644 --- a/Include/abstract.h +++ b/Include/abstract.h @@ -268,6 +268,12 @@ xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/ PyAPI_FUNC(PyObject *) PyObject_Call(PyObject *callable_object, 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 PyAPI_FUNC(PyObject*) _PyStack_AsTuple( PyObject **stack, @@ -349,12 +355,6 @@ xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/ const char *where); #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, PyObject *args); |