summaryrefslogtreecommitdiff
path: root/Include
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-12-06 13:45:44 +0200
committerSerhiy Storchaka <storchaka@gmail.com>2016-12-06 13:45:44 +0200
commitfbe26ff9b0bac8511d5b31c3511fbd1ea24d9316 (patch)
tree08256cafbd05796f694bcba357fe8e78c8691b33 /Include
parentc1e88b95f36c57be30d3dd5437089b777ac46252 (diff)
parent9d6e4201cf331461fa2e78d407e595b20edf243c (diff)
downloadcpython-fbe26ff9b0bac8511d5b31c3511fbd1ea24d9316.tar.gz
Fixed misplaced comment.
Diffstat (limited to 'Include')
-rw-r--r--Include/abstract.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/Include/abstract.h b/Include/abstract.h
index 44107a8a81..03f8dbbc4c 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,
@@ -352,12 +358,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);