Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | bpo-31245: asyncio: Fix typo, isistance => isinstance (#4594) | Victor Stinner | 2017-11-27 | 1 | -1/+1 | |
| | ||||||
* | bpo-32047: -X dev enables asyncio debug mode (#4418) | Victor Stinner | 2017-11-20 | 1 | -2/+1 | |
| | | | | The new -X dev command line option now also enables asyncio debug mode. | |||||
* | bpo-31970: Reduce performance overhead of asyncio debug mode. (#4314) | Antoine Pitrou | 2017-11-07 | 1 | -0/+5 | |
| | | | | * bpo-31970: Reduce performance overhead of asyncio debug mode. | |||||
* | bpo-31245: Asyncio unix socket datagram (#3164) | Quentin Dawans | 2017-10-30 | 1 | -0/+6 | |
| | ||||||
* | call remove_done_callback in finally section (#1688) | jimmylai | 2017-05-23 | 1 | -1/+2 | |
| | ||||||
* | bpo-29617: Remove Python 3.3 support from asyncio (GH-232) | INADA Naoki | 2017-04-25 | 1 | -11/+6 | |
| | ||||||
* | bpo-30144: Import collections ABC from collections.abc rather than ↵ | Serhiy Storchaka | 2017-04-24 | 1 | -1/+2 | |
| | | | | collections. (#1263) | |||||
* | bpo-29762: More use "raise from None". (#569) | Serhiy Storchaka | 2017-04-05 | 1 | -1/+1 | |
| | | | This hides unwanted implementation details from tracebacks. | |||||
* | Remove unused imports. | Serhiy Storchaka | 2016-12-16 | 1 | -1/+0 | |
| | ||||||
* | Merge 3.5 (issue #28652) | Yury Selivanov | 2016-11-21 | 1 | -12/+10 | |
|\ | ||||||
| * | Issue #28652: Partially rollback previous changes | Yury Selivanov | 2016-11-21 | 1 | -12/+10 | |
| | | | | | | | | Allow AF_UNIX in create_server & create_connection | |||||
* | | Merge 3.5 (issue #28652) | Yury Selivanov | 2016-11-09 | 1 | -11/+45 | |
|\ \ | |/ | ||||||
| * | Issue #28652: Make loop methods reject socket kinds they do not support. | Yury Selivanov | 2016-11-09 | 1 | -11/+45 | |
| | | ||||||
* | | Merge 3.5 (issue #28613) | Yury Selivanov | 2016-11-04 | 1 | -1/+6 | |
|\ \ | |/ | ||||||
| * | Issue #28613: Fix get_event_loop() to return the current loop | Yury Selivanov | 2016-11-04 | 1 | -1/+6 | |
| | | | | | | | | when called from coroutines or callbacks. | |||||
| * | asyncio: Sync with upstream | Yury Selivanov | 2016-11-03 | 1 | -0/+3 | |
| | | ||||||
* | | Merge 3.5 (issue #28600) | Yury Selivanov | 2016-11-03 | 1 | -21/+19 | |
|\ \ | |/ | ||||||
| * | Issue #28600: Optimize loop.call_soon(). | Yury Selivanov | 2016-11-03 | 1 | -21/+19 | |
| | | | | | | | | | | 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 Selivanov | 2016-10-28 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | 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 Selivanov | 2016-10-21 | 1 | -4/+1 | |
|\ \ | |/ | ||||||
| * | Issue #26796: Don't configure the number of workers for default threadpool ↵ | Yury Selivanov | 2016-10-21 | 1 | -4/+1 | |
| | | | | | | | | | | | | executor. Initial patch by Hans Lawrenz. | |||||
* | | Issue #28500: Fix asyncio to handle async gens GC from another thread. | Yury Selivanov | 2016-10-21 | 1 | -0/+3 | |
| | | ||||||
* | | Merge 3.5 (issue #28371) | Yury Selivanov | 2016-10-05 | 1 | -0/+3 | |
|\ \ | |/ | ||||||
| * | Issue #28371: Deprecate passing asyncio.Handles to run_in_executor. | Yury Selivanov | 2016-10-05 | 1 | -0/+3 | |
| | | ||||||
* | | Misc asyncio improvements from upstream (merge 3.5->3.6) | Guido van Rossum | 2016-09-30 | 1 | -18/+10 | |
|\ \ | |/ | ||||||
| * | Misc asyncio improvements from upstream | Guido van Rossum | 2016-09-30 | 1 | -18/+10 | |
| | | ||||||
* | | Merge 3.5 (issue #28174) | Yury Selivanov | 2016-09-15 | 1 | -12/+13 | |
|\ \ | |/ | ||||||
| * | Issue #28174: Handle when SO_REUSEPORT isn't properly supported (asyncio) | Yury Selivanov | 2016-09-15 | 1 | -12/+13 | |
| | | | | | | | | Patch by Seth Michael Larson. | |||||
* | | Merge 3.5 (issue #27906) | Yury Selivanov | 2016-09-15 | 1 | -1/+1 | |
|\ \ | |/ | ||||||
| * | Issue #27906: Fix socket accept exhaustion during high TCP traffic. | Yury Selivanov | 2016-09-15 | 1 | -1/+1 | |
| | | | | | | | | Patch by Kevin Conway. | |||||
| * | Another asyncio sync. | Yury Selivanov | 2016-09-15 | 1 | -4/+5 | |
| | | ||||||
| * | asyncio: Sync with the upstream | Yury Selivanov | 2016-09-15 | 1 | -0/+60 | |
| | | ||||||
* | | Merge 3.5 (asyncio) | Yury Selivanov | 2016-09-15 | 1 | -8/+16 | |
| | | ||||||
* | | merge | Raymond Hettinger | 2016-09-09 | 1 | -1/+1 | |
|\ \ | |/ | ||||||
| * | Merge asyncio upstream. | Guido van Rossum | 2016-09-09 | 1 | -1/+1 | |
| | | ||||||
* | | Issue #28003: Implement PEP 525 -- Asynchronous Generators. | Yury Selivanov | 2016-09-09 | 1 | -2/+55 | |
| | | ||||||
* | | Closes #27904: Improved logging statements to defer formatting until needed. | Vinay Sajip | 2016-08-31 | 1 | -2/+2 | |
| | | ||||||
* | | Merge 3.5 (issue #27392) | Yury Selivanov | 2016-07-12 | 1 | -4/+24 | |
|\ \ | |/ | ||||||
| * | Issue #27392: Add loop.connect_accepted_socket(). | Yury Selivanov | 2016-07-12 | 1 | -4/+24 | |
| | | | | | | | | Patch by Jim Fulton. | |||||
* | | Merge 3.5 (issue #27136, asyncio) | Yury Selivanov | 2016-06-08 | 1 | -69/+47 | |
|\ \ | |/ | ||||||
| * | Issue #27136: Fix DNS static resolution; don't use it in getaddrinfo | Yury Selivanov | 2016-06-08 | 1 | -69/+47 | |
| | | | | | | | | Patch by A. Jesse Jiryu Davis | |||||
* | | Merge 3.5 (asyncio) | Yury Selivanov | 2016-06-02 | 1 | -3/+19 | |
|\ \ | |/ | ||||||
| * | asyncio: Fix getaddrinfo to accept service names (for port) | Yury Selivanov | 2016-06-02 | 1 | -3/+19 | |
| | | | | | | | | Patch by A. Jesse Jiryu Davis | |||||
* | | Merge 3.5 (asyncio) | Yury Selivanov | 2016-06-02 | 1 | -1/+1 | |
|\ \ | |/ | ||||||
| * | asyncio: Support host=b'' for getaddrinfo | Yury Selivanov | 2016-06-02 | 1 | -1/+1 | |
| | | ||||||
* | | Merge 3.5 (asyncio) | Yury Selivanov | 2016-05-21 | 1 | -1/+1 | |
|\ \ | |/ | ||||||
| * | asyncio: Fix BytesWarning (use typed=True in lru_cache for _ipaddr_info) | Yury Selivanov | 2016-05-21 | 1 | -1/+1 | |
| | | ||||||
* | | Merge 3.5 (asyncio) | Yury Selivanov | 2016-05-20 | 1 | -0/+5 | |
|\ \ | |/ | ||||||
| * | asyncio: Fix getaddrinfo to accept None/str/bytes for 'port' arg | Yury Selivanov | 2016-05-20 | 1 | -0/+5 | |
| | | | | | | | | Patch by A. Jesse Jiryu Davis. | |||||
* | | Merge 3.5 (Issue #27041) | Yury Selivanov | 2016-05-16 | 1 | -7/+11 | |
|\ \ | |/ |