summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2016-10-29 07:11:06 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2016-10-29 07:11:06 (GMT)
commit43a5c1c9d39539504b2299c126243fcaaa3218ad (patch)
tree79390fdb6a0fe04f1ac8e89b957266805e855d3e
parentf0bbee6228a3a369520e6a1b49eb2e4d079031cd (diff)
parentf94d1eee7499bc00fe78eab8e3d43cc381ab2407 (diff)
downloadcpython-43a5c1c9d39539504b2299c126243fcaaa3218ad.zip
cpython-43a5c1c9d39539504b2299c126243fcaaa3218ad.tar.gz
cpython-43a5c1c9d39539504b2299c126243fcaaa3218ad.tar.bz2
Merge 3.6
-rw-r--r--Modules/_asynciomodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_asynciomodule.c b/Modules/_asynciomodule.c
index 6278b25..18dd37b 100644
--- a/Modules/_asynciomodule.c
+++ b/Modules/_asynciomodule.c
@@ -152,7 +152,7 @@ future_init(FutureObj *fut, PyObject *loop)
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;
}