summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-12-06 13:43:46 +0200
committerSerhiy Storchaka <storchaka@gmail.com>2016-12-06 13:43:46 +0200
commit9d6e4201cf331461fa2e78d407e595b20edf243c (patch)
treeeac26d51c9e5da9b057cf550d9788cd2b7aeda20
parent6980f5f3bb35266ae50b1670ad3aa409d74a60bd (diff)
downloadcpython-9d6e4201cf331461fa2e78d407e595b20edf243c.tar.gz
Fixed misplaced comment.
-rw-r--r--Include/abstract.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/Include/abstract.h b/Include/abstract.h
index 36df5a7ce2..7dbbb74b11 100644
--- a/Include/abstract.h
+++ b/Include/abstract.h
@@ -266,18 +266,18 @@ xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
PyAPI_FUNC(PyObject *) PyObject_Call(PyObject *callable_object,
PyObject *args, PyObject *kw);
-#ifndef Py_LIMITED_API
- PyAPI_FUNC(PyObject *) _Py_CheckFunctionResult(PyObject *func,
- PyObject *result,
- const char *where);
-#endif
-
/*
Call a callable Python object, callable_object, with
arguments and keywords arguments. The 'args' argument can not be
NULL, but the 'kw' argument can be NULL.
*/
+#ifndef Py_LIMITED_API
+ PyAPI_FUNC(PyObject *) _Py_CheckFunctionResult(PyObject *func,
+ PyObject *result,
+ const char *where);
+#endif
+
PyAPI_FUNC(PyObject *) PyObject_CallObject(PyObject *callable_object,
PyObject *args);