]> granicus.if.org Git - python/commitdiff
Fixed misplaced comment.
authorSerhiy Storchaka <storchaka@gmail.com>
Tue, 6 Dec 2016 11:43:46 +0000 (13:43 +0200)
committerSerhiy Storchaka <storchaka@gmail.com>
Tue, 6 Dec 2016 11:43:46 +0000 (13:43 +0200)
Include/abstract.h

index 36df5a7ce2a2d30cbb63f071905925d358a52e5c..7dbbb74b11c7f5934bcfca060cff5392d66ca7a3 100644 (file)
@@ -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);