diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-12-06 11:45:44 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-12-06 11:45:44 (GMT) |
commit | b0f75c520ee882295b0d2884469056ebf0d0568b (patch) | |
tree | 4ca4a19dc1c6f41cb0e5aae9c89c1b41dafc8a2f | |
parent | 8ae9e6a627ed6630b577a540d611c226959280ce (diff) | |
parent | e5031260741e18968faedd19c2ac617ddc8f5c32 (diff) | |
download | cpython-b0f75c520ee882295b0d2884469056ebf0d0568b.zip cpython-b0f75c520ee882295b0d2884469056ebf0d0568b.tar.gz cpython-b0f75c520ee882295b0d2884469056ebf0d0568b.tar.bz2 |
Fixed misplaced comment.
-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 44107a8..03f8dbb 100644 --- a/Include/abstract.h +++ b/Include/abstract.h @@ -268,6 +268,12 @@ xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/ PyAPI_FUNC(PyObject *) PyObject_Call(PyObject *callable_object, PyObject *args, PyObject *kwargs); + /* + Call a callable Python object, callable_object, with + arguments and keywords arguments. The 'args' argument can not be + NULL. + */ + #ifndef Py_LIMITED_API PyAPI_FUNC(PyObject*) _PyStack_AsTuple( PyObject **stack, @@ -352,12 +358,6 @@ xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/ const char *where); #endif /* Py_LIMITED_API */ - /* - Call a callable Python object, callable_object, with - arguments and keywords arguments. The 'args' argument can not be - NULL. - */ - PyAPI_FUNC(PyObject *) PyObject_CallObject(PyObject *callable_object, PyObject *args); |