- 11 Haz, 2017 1 kayıt (commit)
-
-
Yury Selivanov yazdı
-
- 11 May, 2017 1 kayıt (commit)
-
-
INADA Naoki yazdı
when there are no more `await` or `yield (from)` before return in coroutine, cancel was ignored. example: async def coro(): asyncio.Task.current_task().cancel() return 42 ... res = await coro() # should raise CancelledError
-
- 25 Nis, 2017 1 kayıt (commit)
-
-
INADA Naoki yazdı
-
- 21 Nis, 2017 1 kayıt (commit)
-
-
Charles Renwick yazdı
-
- 07 Şub, 2017 1 kayıt (commit)
-
-
Mariatta Wijaya yazdı
-
- 28 Eki, 2016 1 kayıt (commit)
-
-
Yury Selivanov yazdı
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).
-
- 21 Eki, 2016 1 kayıt (commit)
-
-
Yury Selivanov yazdı
Patch by Johannes Ebke.
-
- 09 Eki, 2016 1 kayıt (commit)
-
-
Yury Selivanov yazdı
-
- 30 Eyl, 2016 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 15 Eyl, 2016 2 kayıt (commit)
-
-
Yury Selivanov yazdı
-
Yury Selivanov yazdı
-
- 09 Eyl, 2016 2 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
This is now an official "protected" API that can be used to write classes that are duck-type-compatible with Future without subclassing it. (For that purpose I also changed isinstance(result, Future) to check for this attribute instead.) Hopefully Amber Brown can use this to make Twisted.Deferred compatible with asyncio.Future. Tests and docs are TBD.
-
- 08 Haz, 2016 1 kayıt (commit)
-
-
Yury Selivanov yazdı
It will probably be added back in Python 3.6, once its compatibility issues are resolved; see [1] for more details. [1] https://mail.python.org/pipermail/async-sig/2016-June/000045.html
-
- 16 May, 2016 1 kayıt (commit)
-
-
Yury Selivanov yazdı
-
- 01 Nis, 2016 1 kayıt (commit)
-
-
Victor Stinner yazdı
Fix GH#325: Allow to pass None as a timeout value to disable timeout logic. Change written by Andrew Svetlov and merged by Guido van Rossum.
-
- 11 Ock, 2016 2 kayıt (commit)
-
-
Andrew Svetlov yazdı
-
Andrew Svetlov yazdı
-
- 11 Ara, 2015 1 kayıt (commit)
-
-
Yury Selivanov yazdı
See https://github.com/python/asyncio/pull/303 for details
-
- 20 Kas, 2015 1 kayıt (commit)
-
-
Yury Selivanov yazdı
-
- 17 Kas, 2015 2 kayıt (commit)
-
-
Yury Selivanov yazdı
See https://github.com/python/asyncio/pull/292 for details.
-
Yury Selivanov yazdı
-
- 16 Kas, 2015 1 kayıt (commit)
-
-
Yury Selivanov yazdı
See https://github.com/python/asyncio/pull/289 for details.
-
- 05 Kas, 2015 1 kayıt (commit)
-
-
Yury Selivanov yazdı
-
- 05 Eki, 2015 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 03 Eki, 2015 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 02 Eki, 2015 1 kayıt (commit)
-
-
Yury Selivanov yazdı
-
- 17 Agu, 2015 1 kayıt (commit)
-
-
Yury Selivanov yazdı
-
- 14 Agu, 2015 1 kayıt (commit)
-
-
Yury Selivanov yazdı
-
- 02 Agu, 2015 2 kayıt (commit)
-
-
Yury Selivanov yazdı
-
Yury Selivanov yazdı
-
- 25 Tem, 2015 2 kayıt (commit)
-
-
Victor Stinner yazdı
* Fix ResourceWarning warnings in test_streams * Return True from StreamReader.eof_received() to fix http://bugs.python.org/issue24539 (but still needs a unittest). Add StreamReader.__repr__() for easy debugging. * remove unused imports * Issue #234: Drop JoinableQueue on Python 3.5+
-
Victor Stinner yazdı
Move compatibility helpers for the different Python versions to a new asyncio.compat module.
-
- 28 May, 2015 1 kayıt (commit)
-
-
Yury Selivanov yazdı
See also issue 24017.
-
- 12 May, 2015 1 kayıt (commit)
-
-
Yury Selivanov yazdı
-
- 11 May, 2015 1 kayıt (commit)
-
-
Yury Selivanov yazdı
-
- 29 Ock, 2015 1 kayıt (commit)
-
-
Victor Stinner yazdı
* Cleanup gather(): use cancelled() method instead of using private Future attribute * Fix _UnixReadPipeTransport and _UnixWritePipeTransport. Only start reading when connection_made() has been called. * Issue #23333: Fix BaseSelectorEventLoop._accept_connection(). Close the transport on error. In debug mode, log errors using call_exception_handler()
-
- 15 Ock, 2015 1 kayıt (commit)
-
-
Victor Stinner yazdı
-
- 09 Ock, 2015 1 kayıt (commit)
-
-
Victor Stinner yazdı
* Document why set_result() calls are safe * Cleanup gather(). Use public methods instead of hacks to consume the exception of a future. * sock_connect(): pass directly the fd to _sock_connect_done instead of the socket.
-
- 08 Ock, 2015 1 kayıt (commit)
-
-
Victor Stinner yazdı
-