Skip to content

Commit e503126

Browse files
Fixed misplaced comment.
1 parent 41fef63 commit e503126

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Include/abstract.h

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -266,18 +266,18 @@ xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
266266
PyAPI_FUNC(PyObject *) PyObject_Call(PyObject *callable_object,
267267
PyObject *args, PyObject *kw);
268268

269-
#ifndef Py_LIMITED_API
270-
PyAPI_FUNC(PyObject *) _Py_CheckFunctionResult(PyObject *func,
271-
PyObject *result,
272-
const char *where);
273-
#endif
274-
275269
/*
276270
Call a callable Python object, callable_object, with
277271
arguments and keywords arguments. The 'args' argument can not be
278272
NULL, but the 'kw' argument can be NULL.
279273
*/
280274

275+
#ifndef Py_LIMITED_API
276+
PyAPI_FUNC(PyObject *) _Py_CheckFunctionResult(PyObject *func,
277+
PyObject *result,
278+
const char *where);
279+
#endif
280+
281281
PyAPI_FUNC(PyObject *) PyObject_CallObject(PyObject *callable_object,
282282
PyObject *args);
283283

0 commit comments

Comments
 (0)