diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2017-09-03 05:10:14 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-03 05:10:14 (GMT) |
commit | bca4939d806170c3ca5d05f23710d11a8f1669cf (patch) | |
tree | 104b11ed1cc4806358b0e6212c7934b2c844b092 /Modules/clinic | |
parent | 8df44ee8e0fbdb390bd38eb88eb1ee4e2a10d355 (diff) | |
download | cpython-bca4939d806170c3ca5d05f23710d11a8f1669cf.zip cpython-bca4939d806170c3ca5d05f23710d11a8f1669cf.tar.gz cpython-bca4939d806170c3ca5d05f23710d11a8f1669cf.tar.bz2 |
bpo-31185: Fixed miscellaneous errors in asyncio speedup module. (#3076)
Diffstat (limited to 'Modules/clinic')
-rw-r--r-- | Modules/clinic/_asynciomodule.c.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Modules/clinic/_asynciomodule.c.h b/Modules/clinic/_asynciomodule.c.h index 8f598ed..7627849 100644 --- a/Modules/clinic/_asynciomodule.c.h +++ b/Modules/clinic/_asynciomodule.c.h @@ -28,7 +28,7 @@ _asyncio_Future___init__(PyObject *self, PyObject *args, PyObject *kwargs) int return_value = -1; static const char * const _keywords[] = {"loop", NULL}; static _PyArg_Parser _parser = {"|$O:Future", _keywords, 0}; - PyObject *loop = NULL; + PyObject *loop = Py_None; if (!_PyArg_ParseTupleAndKeywordsFast(args, kwargs, &_parser, &loop)) { @@ -244,7 +244,7 @@ _asyncio_Task___init__(PyObject *self, PyObject *args, PyObject *kwargs) static const char * const _keywords[] = {"coro", "loop", NULL}; static _PyArg_Parser _parser = {"O|$O:Task", _keywords, 0}; PyObject *coro; - PyObject *loop = NULL; + PyObject *loop = Py_None; if (!_PyArg_ParseTupleAndKeywordsFast(args, kwargs, &_parser, &coro, &loop)) { @@ -477,7 +477,7 @@ _asyncio_Task__step(TaskObj *self, PyObject **args, Py_ssize_t nargs, PyObject * PyObject *return_value = NULL; static const char * const _keywords[] = {"exc", NULL}; static _PyArg_Parser _parser = {"|O:_step", _keywords, 0}; - PyObject *exc = NULL; + PyObject *exc = Py_None; if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser, &exc)) { @@ -517,4 +517,4 @@ _asyncio_Task__wakeup(TaskObj *self, PyObject **args, Py_ssize_t nargs, PyObject exit: return return_value; } -/*[clinic end generated code: output=fe651840e0466fa9 input=a9049054013a1b77]*/ +/*[clinic end generated code: output=b92f9cd2b9fb37ef input=a9049054013a1b77]*/ |