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

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


https://hg.python.org/cpython/rev/a4d4dd411431
changeset:   105479:a4d4dd411431
branch:      3.6
parent:      105476:150d36dbe3ba
parent:      105478:104fdc42bcd1
user:        Serhiy Storchaka <storchaka at gmail.com>
date:        Tue Dec 06 13:45:44 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
@@ -268,6 +268,12 @@
      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 @@
                                                     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);
 

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


More information about the Python-checkins mailing list