From: Serhiy Storchaka Date: Tue, 6 Dec 2016 11:43:46 +0000 (+0200) Subject: Fixed misplaced comment. X-Git-Tag: v3.6.0rc1~6^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e5031260741e18968faedd19c2ac617ddc8f5c32;p=python Fixed misplaced comment. --- 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);