[Python-checkins] cpython (3.5): Fixed misplaced comment.

serhiy.storchaka python-checkins at python.org
Tue Dec 6 06:46:30 EST 2016


https://hg.python.org/cpython/rev/104fdc42bcd1
changeset:   105478:104fdc42bcd1
branch:      3.5
parent:      105471:e3e7e9248f98
user:        Serhiy Storchaka <storchaka at gmail.com>
date:        Tue Dec 06 13:43:46 2016 +0200
summary:
  Fixed misplaced comment.

files:
  Include/abstract.h |  12 ++++++------
  1 files changed, 6 insertions(+), 6 deletions(-)


diff --git a/Include/abstract.h b/Include/abstract.h
--- a/Include/abstract.h
+++ b/Include/abstract.h
@@ -266,18 +266,18 @@
      PyAPI_FUNC(PyObject *) PyObject_Call(PyObject *callable_object,
                                           PyObject *args, PyObject *kw);
 
+       /*
+     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
 
-       /*
-     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.
-       */
-
      PyAPI_FUNC(PyObject *) PyObject_CallObject(PyObject *callable_object,
                                                 PyObject *args);
 

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list