- 02 Agu, 2017 1 kayıt (commit)
-
-
Alexander Mohr yazdı
-
- 25 Tem, 2017 1 kayıt (commit)
-
-
Victor Stinner yazdı
* bpo-31034: Reliable signal handler for test_asyncio Don't rely on the current SIGHUP signal handler, make sure that it's set to the "default" signal handler: SIG_DFL. * Add comments
-
- 05 Tem, 2017 1 kayıt (commit)
-
-
Yury Selivanov yazdı
-
- 30 Haz, 2017 1 kayıt (commit)
-
-
Victor Stinner yazdı
* bpo-30280: asyncio now cleans up threads asyncio base TestCase now uses threading_setup() and threading_cleanup() of test.support to cleanup threads. * asyncio: Fix TestBaseSelectorEventLoop cleanup bpo-30280: TestBaseSelectorEventLoop of test.test_asyncio.test_selector_events now correctly closes the event loop: cleanup its executor to not leak threads. Don't override the close() method of the event loop, only override the_close_self_pipe() method.
-
- 11 Haz, 2017 2 kayıt (commit)
-
-
Yury Selivanov yazdı
Revert "bpo-29406: asyncio SSL contexts leak sockets after calling close with certain servers (#409)" (#2111) This reverts commit a608d2d5.
-
Yury Selivanov yazdı
-
- 10 Haz, 2017 1 kayıt (commit)
-
-
Nikolay Kim yazdı
* asyncio SSL contexts leak sockets after calling close with certain servers * cleanup _shutdown_timeout_handle on _fatal_error
-
- 09 Haz, 2017 2 kayıt (commit)
-
-
Nikolay Kim yazdı
-
Mathieu Sornay yazdı
Avoid a deadlock when the waiter who is about to take the lock is cancelled Issue #27585
-
- 15 May, 2017 1 kayıt (commit)
-
-
Xiang Zhang 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
-
- 27 Mar, 2017 1 kayıt (commit)
-
-
Victor Stinner yazdı
Make also minor PEP8 coding style fixes on modified imports.
-
- 12 Mar, 2017 1 kayıt (commit)
-
-
Nikolay Kim yazdı
-
- 03 Mar, 2017 5 kayıt (commit)
-
-
Yury Selivanov yazdı
-
Yury Selivanov yazdı
-
Seth M. Larson yazdı
-
Yury Selivanov yazdı
-
Yury Selivanov yazdı
-
- 16 Ara, 2016 3 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
Yury Selivanov yazdı
-
Yury Selivanov yazdı
-
- 01 Ara, 2016 2 kayıt (commit)
-
-
Yury Selivanov yazdı
-
Yury Selivanov yazdı
-
- 21 Kas, 2016 1 kayıt (commit)
-
-
Yury Selivanov yazdı
Allow AF_UNIX in create_server & create_connection
-
- 15 Kas, 2016 2 kayıt (commit)
-
-
Yury Selivanov yazdı
-
Yury Selivanov yazdı
-
- 14 Kas, 2016 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
- 09 Kas, 2016 2 kayıt (commit)
-
-
Yury Selivanov yazdı
-
Yury Selivanov yazdı
Some built-in coroutine-like objects might not have __name__ or __qualname__. A good example of such are 'asend', 'aclose' and 'athrow' coroutine methods of asynchronous generators.
-
- 08 Kas, 2016 1 kayıt (commit)
-
-
Yury Selivanov yazdı
-
- 07 Kas, 2016 1 kayıt (commit)
-
-
Yury Selivanov yazdı
-
- 04 Kas, 2016 1 kayıt (commit)
-
-
Yury Selivanov yazdı
when called from coroutines or callbacks.
-
- 03 Kas, 2016 1 kayıt (commit)
-
-
Yury Selivanov yazdı
Run expensive type checks only in debug mode. In addition, stop supporting passing handles to loop.run_in_executor.
-
- 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).
-
- 24 Eki, 2016 1 kayıt (commit)
-
-
Yury Selivanov yazdı
Also, add 'isfuture' to 'asyncio.futures.__all__', so that it's exposed as 'asyncio.isfuture'.
-
- 21 Eki, 2016 1 kayıt (commit)
-
-
Yury Selivanov yazdı
Patch by Johannes Ebke.
-
- 20 Eki, 2016 1 kayıt (commit)
-
-
Yury Selivanov yazdı
-
- 09 Eki, 2016 2 kayıt (commit)
-
-
Yury Selivanov yazdı
-
Yury Selivanov yazdı
Patch by Коренберг Марк.
-
- 07 Eki, 2016 1 kayıt (commit)
-
-
Yury Selivanov yazdı
-