Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | correctly emulate error semantics of gen.throw in FutureIter_throw | Benjamin Peterson | 2016-11-14 | 1 | -19/+34 |
| | |||||
* | Issue #26081: Fix refleak in _asyncio.Future.__iter__().throw. | Yury Selivanov | 2016-11-09 | 1 | -1/+3 |
| | |||||
* | Issue #23996: Added _PyGen_SetStopIterationValue for safe raising | Serhiy Storchaka | 2016-11-06 | 1 | -18/+4 |
| | | | | | StopIteration with value. More safely handle non-normalized exceptions in -_PyGen_FetchStopIterationValue. | ||||
* | Issue #28544: Fix inefficient call to _PyObject_CallMethodId() | Victor Stinner | 2016-10-29 | 1 | -1/+1 |
| | | | | | "()" format string creates an empty list of argument but requires extra work to parse the format string. | ||||
* | Issue #28544: Pass `PyObject*` to _PyDict_Pop, not `PyDictObject*` | Yury Selivanov | 2016-10-28 | 1 | -5/+5 |
| | |||||
* | Issue #28544: Fix _asynciomodule.c on Windows | Victor Stinner | 2016-10-28 | 1 | -5/+5 |
| | | | | | | PyType_Ready() sets the reference to &PyType_Type. &PyType_Type cannot be resolved at compilation time (not on Windows?). | ||||
* | Issue #28544: Implement asyncio.Task in C. | Yury Selivanov | 2016-10-28 | 1 | -277/+1699 |
| | | | | | | | | This implementation provides additional 10-20% speed boost for asyncio programs. The patch also fixes _asynciomodule.c to use Arguments Clinic, and makes '_schedule_callbacks' an overridable method (as it was in 3.5). | ||||
* | Issue #28430: Fix iterator of C implemented asyncio.Future doesn't | INADA Naoki | 2016-10-25 | 1 | -6/+4 |
| | | | | accept non-None value is passed to it.send(val). | ||||
* | Issue #28493: Fix typos in _asynciomodule.c | Yury Selivanov | 2016-10-20 | 1 | -2/+2 |
| | | | | Thanks to Stéphane Wirtel! | ||||
* | Issue #28492: Fix how StopIteration is raised in _asyncio.Future | Yury Selivanov | 2016-10-20 | 1 | -2/+19 |
| | |||||
* | Issue #28452: Remove _asyncio._init_module function | INADA Naoki | 2016-10-18 | 1 | -66/+55 |
| | |||||
* | Issue #28428: Rename _futures module to _asyncio. | INADA Naoki | 2016-10-15 | 1 | -0/+1034 |
It will have more speedup functions or classes other than asyncio.Future. |