aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/asyncio/base_events.py
Commit message (Collapse)AuthorAge
...
* bpo-32355: Optimize asyncio.gather() (#4913)Yury Selivanov2017-12-19
|
* bpo-27456: Simplify sock type checks (#4922)Yury Selivanov2017-12-19
| | | | Recent sock.type fix (see bug 32331) makes sock.type checks simpler in asyncio.
* bpo-27456: Ensure TCP_NODELAY is set on linux (#4231)Yury Selivanov2017-12-15
|
* bpo-32327: Convert asyncio functions documented as coroutines to coroutines. ↵Yury Selivanov2017-12-14
| | | | (#4872)
* bpo-32262: Fix f-string (#4787)Yury Selivanov2017-12-10
|
* bpo-32262: Fix codestyle; use f-strings formatting where necessary. (#4775)Yury Selivanov2017-12-10
|
* bpo-32193: Convert asyncio to async/await usage (#4753)Andrew Svetlov2017-12-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Convert asyncio/tasks.py to async/await * Convert asyncio/queues.py to async/await * Convert asyncio/test_utils.py to async/await * Convert asyncio/base_subprocess.py to async/await * Convert asyncio/subprocess.py to async/await * Convert asyncio/streams.py to async/await * Fix comments * Convert asyncio/locks.py to async/await * Convert asyncio.sleep to async def * Add a comment * Add missing news * Convert stubs from AbstrctEventLoop to async functions * Convert subprocess_shell/subprocess_exec * Convert connect_read_pipe/connect_write_pip to async/await syntax * Convert create_datagram_endpoint * Convert create_unix_server/create_unix_connection * Get rid of old style coroutines in unix_events.py * Convert selector_events.py to async/await * Convert wait_closed and create_connection * Drop redundant line * Convert base_events.py * Code cleanup * Drop redundant comments * Fix indentation * Add explicit tests for compatibility between old and new coroutines * Convert windows event loop to use async/await * Fix double awaiting of async function * Convert asyncio/locks.py * Improve docstring * Convert tests to async/await * Convert more tests * Convert more tests * Convert more tests * Convert tests * Improve test
* bpo-31245: asyncio: Fix typo, isistance => isinstance (#4594)Victor Stinner2017-11-28
|
* bpo-32047: -X dev enables asyncio debug mode (#4418)Victor Stinner2017-11-20
| | | | The new -X dev command line option now also enables asyncio debug mode.
* bpo-31970: Reduce performance overhead of asyncio debug mode. (#4314)Antoine Pitrou2017-11-07
| | | | * bpo-31970: Reduce performance overhead of asyncio debug mode.
* bpo-31245: Asyncio unix socket datagram (#3164)Quentin Dawans2017-10-30
|
* call remove_done_callback in finally section (#1688)jimmylai2017-05-22
|
* bpo-29617: Remove Python 3.3 support from asyncio (GH-232)INADA Naoki2017-04-25
|
* bpo-30144: Import collections ABC from collections.abc rather than ↵Serhiy Storchaka2017-04-24
| | | | collections. (#1263)
* bpo-29762: More use "raise from None". (#569)Serhiy Storchaka2017-04-05
| | | This hides unwanted implementation details from tracebacks.
* Remove unused imports.Serhiy Storchaka2016-12-16
|
* Merge 3.5 (issue #28652)Yury Selivanov2016-11-21
|\
| * Issue #28652: Partially rollback previous changesYury Selivanov2016-11-21
| | | | | | | | Allow AF_UNIX in create_server & create_connection
* | Merge 3.5 (issue #28652)Yury Selivanov2016-11-09
|\|
| * Issue #28652: Make loop methods reject socket kinds they do not support.Yury Selivanov2016-11-09
| |
* | Merge 3.5 (issue #28613)Yury Selivanov2016-11-04
|\|
| * Issue #28613: Fix get_event_loop() to return the current loopYury Selivanov2016-11-04
| | | | | | | | when called from coroutines or callbacks.
| * asyncio: Sync with upstreamYury Selivanov2016-11-03
| |
* | Merge 3.5 (issue #28600)Yury Selivanov2016-11-03
|\|
| * Issue #28600: Optimize loop.call_soon().Yury Selivanov2016-11-03
| | | | | | | | | | Run expensive type checks only in debug mode. In addition, stop supporting passing handles to loop.run_in_executor.
* | Issue #28544: Implement asyncio.Task in C.Yury Selivanov2016-10-28
| | | | | | | | | | | | | | | | 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).
* | Merge 3.5 (issue #26796)Yury Selivanov2016-10-21
|\|
| * Issue #26796: Don't configure the number of workers for default threadpool ↵Yury Selivanov2016-10-21
| | | | | | | | | | | | executor. Initial patch by Hans Lawrenz.
* | Issue #28500: Fix asyncio to handle async gens GC from another thread.Yury Selivanov2016-10-21
| |
* | Merge 3.5 (issue #28371)Yury Selivanov2016-10-05
|\|
| * Issue #28371: Deprecate passing asyncio.Handles to run_in_executor.Yury Selivanov2016-10-05
| |
* | Misc asyncio improvements from upstream (merge 3.5->3.6)Guido van Rossum2016-09-30
|\|
| * Misc asyncio improvements from upstreamGuido van Rossum2016-09-30
| |
* | Merge 3.5 (issue #28174)Yury Selivanov2016-09-15
|\|
| * Issue #28174: Handle when SO_REUSEPORT isn't properly supported (asyncio)Yury Selivanov2016-09-15
| | | | | | | | Patch by Seth Michael Larson.
* | Merge 3.5 (issue #27906)Yury Selivanov2016-09-15
|\|
| * Issue #27906: Fix socket accept exhaustion during high TCP traffic.Yury Selivanov2016-09-15
| | | | | | | | Patch by Kevin Conway.
| * Another asyncio sync.Yury Selivanov2016-09-15
| |
| * asyncio: Sync with the upstreamYury Selivanov2016-09-15
| |
* | Merge 3.5 (asyncio)Yury Selivanov2016-09-15
| |
* | mergeRaymond Hettinger2016-09-09
|\|
| * Merge asyncio upstream.Guido van Rossum2016-09-09
| |
* | Issue #28003: Implement PEP 525 -- Asynchronous Generators.Yury Selivanov2016-09-08
| |
* | Closes #27904: Improved logging statements to defer formatting until needed.Vinay Sajip2016-08-31
| |
* | Merge 3.5 (issue #27392)Yury Selivanov2016-07-12
|\|
| * Issue #27392: Add loop.connect_accepted_socket().Yury Selivanov2016-07-12
| | | | | | | | Patch by Jim Fulton.
* | Merge 3.5 (issue #27136, asyncio)Yury Selivanov2016-06-08
|\|
| * Issue #27136: Fix DNS static resolution; don't use it in getaddrinfoYury Selivanov2016-06-08
| | | | | | | | Patch by A. Jesse Jiryu Davis
* | Merge 3.5 (asyncio)Yury Selivanov2016-06-02
|\|
| * asyncio: Fix getaddrinfo to accept service names (for port)Yury Selivanov2016-06-02
| | | | | | | | Patch by A. Jesse Jiryu Davis