diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-12-06 11:43:46 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-12-06 11:43:46 (GMT) |
commit | e5031260741e18968faedd19c2ac617ddc8f5c32 (patch) | |
tree | 025d8793174098579aa6cfba678d1ab0fd17e6dc /Include | |
parent | 41fef6307635ef7ad57f6a2ae0488b6f685196b9 (diff) | |
download | cpython-e5031260741e18968faedd19c2ac617ddc8f5c32.zip cpython-e5031260741e18968faedd19c2ac617ddc8f5c32.tar.gz cpython-e5031260741e18968faedd19c2ac617ddc8f5c32.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 36df5a7..7dbbb74 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); |