[Python-checkins] cpython (merge 3.6 -> default): Merge 3.6

victor.stinner python-checkins at python.org
Sat Oct 29 03:12:36 EDT 2016


https://hg.python.org/cpython/rev/09a7153bf791
changeset:   104787:09a7153bf791
parent:      104785:60b6e820abe5
parent:      104786:950fbd75223b
user:        Victor Stinner <victor.stinner at gmail.com>
date:        Sat Oct 29 09:11:06 2016 +0200
summary:
  Merge 3.6

files:
  Modules/_asynciomodule.c |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Modules/_asynciomodule.c b/Modules/_asynciomodule.c
--- a/Modules/_asynciomodule.c
+++ b/Modules/_asynciomodule.c
@@ -152,7 +152,7 @@
     Py_CLEAR(fut->fut_loop);
     fut->fut_loop = loop;
 
-    res = _PyObject_CallMethodId(fut->fut_loop, &PyId_get_debug, "()", NULL);
+    res = _PyObject_CallMethodId(fut->fut_loop, &PyId_get_debug, NULL);
     if (res == NULL) {
         return -1;
     }

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


More information about the Python-checkins mailing list