| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | bpo-29742: asyncio get_extra_info() throws exception (#525) (#646) | Yury Selivanov | 2017-03-12 | 1 | -1/+3 |
| | | |||||
| * | bpo-29704: Fix asyncio.SubprocessStreamProtocol closing (#405) | Seth M. Larson | 2017-03-03 | 1 | -2/+15 |
| | | |||||
| * | asyncio: Optimize _get_running_loop() to call getpid() only when there's a loop | Yury Selivanov | 2017-03-03 | 1 | -2/+3 |
| | | |||||
| * | bpo-29703: asyncio: Fix creating new event loops in child processes. (#411) | Yury Selivanov | 2017-03-03 | 2 | -2/+11 |
| | | |||||
| * | Issue #29314: Set the stacklevel to two in asyncio.async() Deprecation Warning | Mariatta Wijaya | 2017-02-07 | 1 | -1/+2 |
| | | |||||
| * | Issue #28990: Fix SSL hanging if connection is closed before handshake ↵ | Yury Selivanov | 2016-12-16 | 1 | -0/+1 |
| | | | | | completed. | ||||
| * | Issue #28652: Partially rollback previous changes | Yury Selivanov | 2016-11-21 | 1 | -12/+10 |
| | | | | | Allow AF_UNIX in create_server & create_connection | ||||
| * | Issue #28704: Fix create_unix_server to support Path-like objects | Yury Selivanov | 2016-11-15 | 1 | -0/+8 |
| | | |||||
| * | Issue #28703: Fix asyncio.iscoroutinefunction to handle Mock objects. | Yury Selivanov | 2016-11-15 | 1 | -2/+14 |
| | | |||||
| * | Issue #28652: Make loop methods reject socket kinds they do not support. | Yury Selivanov | 2016-11-09 | 2 | -13/+47 |
| | | |||||
| * | asyncio: Fix _format_coroutine for coroutine-like objects w/o __name__ | Yury Selivanov | 2016-11-09 | 1 | -2/+6 |
| | | | | | | | 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. | ||||
| * | Issue #28613: Expose asyncio._get_running_loop() and _set_running_loop() | Yury Selivanov | 2016-11-08 | 1 | -0/+1 |
| | | |||||
| * | Issue #28634: Fix asyncio.isfuture() to support mocks | Yury Selivanov | 2016-11-07 | 1 | -2/+3 |
| | | |||||
| * | Issue #28613: Fix get_event_loop() to return the current loop | Yury Selivanov | 2016-11-04 | 3 | -2/+47 |
| | | | | | when called from coroutines or callbacks. | ||||
| * | asyncio: Sync with upstream | Yury Selivanov | 2016-11-03 | 1 | -0/+3 |
| | | |||||
| * | Issue #28600: Optimize loop.call_soon(). | Yury Selivanov | 2016-11-03 | 2 | -22/+19 |
| | | | | | | Run expensive type checks only in debug mode. In addition, stop supporting passing handles to loop.run_in_executor. | ||||
| * | 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 #26923: Fix asyncio.Gather to refuse being cancelled once all children ↵ | Yury Selivanov | 2016-10-21 | 1 | -2/+4 |
| | | | | | | | are done. Patch by Johannes Ebke. | ||||
| * | Issue #27972: Prohibit Tasks to await on themselves. | Yury Selivanov | 2016-10-09 | 1 | -7/+14 |
| | | |||||
| * | Issue #28399: Remove UNIX socket from FS before binding. | Yury Selivanov | 2016-10-09 | 1 | -0/+11 |
| | | | | | Patch by Коренберг Марк. | ||||
| * | asyncio: Only allow Unix Stream sockets for loop.create_unix_server/connection | Yury Selivanov | 2016-10-07 | 1 | -2/+9 |
| | | |||||
| * | asyncio: Add "call_connection_made" arg to SSLProtocol.__init__ | Yury Selivanov | 2016-10-05 | 1 | -2/+5 |
| | | | | | | | | | | Issue #23749: With this change it's possible to implement starttls as a separate package on PyPI, or even by copying/pasting a small snipped of code in your project. It's expected that we'll figure out the API design for starttls during 3.6, so that we can add it in 3.7. | ||||
| * | Issue #28372: Fix asyncio to support formatting of non-python coroutines | Yury Selivanov | 2016-10-05 | 1 | -0/+19 |
| | | |||||
| * | Issue #28371: Deprecate passing asyncio.Handles to run_in_executor. | Yury Selivanov | 2016-10-05 | 1 | -0/+3 |
| | | |||||
| * | Issue #28370: Speedup asyncio.StreamReader.readexactly | Yury Selivanov | 2016-10-05 | 1 | -19/+17 |
| | | | | | Patch by Коренберг Марк. | ||||
| * | Issue #28369: Raise an error when transport's FD is used with add_reader | Yury Selivanov | 2016-10-05 | 3 | -65/+130 |
| | | |||||
| * | Issue #28368: Refuse monitoring processes if the child watcher has no loop ↵ | Yury Selivanov | 2016-10-05 | 1 | -5/+18 |
| | | | | | | | attached. Patch by Vincent Michel. | ||||
| * | Misc asyncio improvements from upstream | Guido van Rossum | 2016-09-30 | 5 | -22/+16 |
| | | |||||
| * | Issue #28176: Fix callbacks race in asyncio.SelectorLoop.sock_connect. | Yury Selivanov | 2016-09-15 | 1 | -17/+10 |
| | | |||||
| * | Issue #26909: Fix slow pipes IO in asyncio. | Yury Selivanov | 2016-09-15 | 1 | -15/+12 |
| | | | | | Patch by INADA Naoki. | ||||
| * | Issue #26654: Inspect functools.partial in asyncio.Handle.__repr__. | Yury Selivanov | 2016-09-15 | 2 | -14/+15 |
| | | | | | Patch by iceboy. | ||||
| * | Issue #28174: Handle when SO_REUSEPORT isn't properly supported (asyncio) | Yury Selivanov | 2016-09-15 | 1 | -12/+13 |
| | | | | | Patch by Seth Michael Larson. | ||||
| * | Issue #27906: Fix socket accept exhaustion during high TCP traffic. | Yury Selivanov | 2016-09-15 | 3 | -35/+42 |
| | | | | | Patch by Kevin Conway. | ||||
| * | Another asyncio sync. | Yury Selivanov | 2016-09-15 | 2 | -5/+11 |
| | | |||||
| * | asyncio: Sync with the upstream | Yury Selivanov | 2016-09-15 | 2 | -0/+64 |
| | | |||||
| * | Issue #27456: asyncio: Set TCP_NODELAY by default. | Yury Selivanov | 2016-09-12 | 1 | -0/+16 |
| | | |||||
| * | asyncio: Add set_protocol / get_protocol methods to Transports | Yury Selivanov | 2016-09-12 | 6 | -0/+44 |
| | | |||||
| * | Merge asyncio upstream. | Guido van Rossum | 2016-09-09 | 4 | -13/+25 |
| | | |||||
| * | Rename Future._blocking to _asyncio_future_blocking. | Guido van Rossum | 2016-09-09 | 2 | -5/+14 |
| | | | | | | | | | | | | | 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. | ||||
| * | Issue #27895: Spelling fixes (Contributed by Ville Skyttä). | Martin Panter | 2016-09-07 | 1 | -1/+1 |
| | | |||||
| * | Fix ordering issues in UNIX read/write pipe transport constructors. | Guido van Rossum | 2016-08-31 | 1 | -6/+17 |
| | | | | | Upstream https://github.com/python/asyncio/pull/408 by Ron Frederick. | ||||
| * | Don't select for read on character devices in _UnixWritePipeTransport. | Guido van Rossum | 2016-08-31 | 1 | -4/+4 |
| | | | | | Upstream https://github.com/python/asyncio/pull/374 by Ron Frederick. | ||||
| * | In asyncio.locks.Lock.acquire(): Avoid deadlock when a cancelled future is ↵ | Guido van Rossum | 2016-08-23 | 1 | -1/+1 |
| | | | | | in self._waiters. | ||||
| * | Issue #27392: Add loop.connect_accepted_socket(). | Yury Selivanov | 2016-07-12 | 1 | -4/+24 |
| | | | | | Patch by Jim Fulton. | ||||
| * | asyncio: Use socket specs for getaddrinfo() in sock_connect() | Yury Selivanov | 2016-06-28 | 1 | -1/+2 |
| | | | | | Patch by Martin Richard. GH PR #365. | ||||
| * | asyncio: Fix NameError in sslproto _fatal_error() | Yury Selivanov | 2016-06-28 | 1 | -0/+1 |
| | | | | | Patch by Richard Walker. | ||||
| * | Issue #22970: asyncio: Fix inconsistency cancelling Condition.wait. | Yury Selivanov | 2016-06-11 | 1 | -1/+7 |
| | | | | | Patch by David Coles. | ||||
| * | Issue #27223: aio: Fix _read_ready and _write_ready to respect _conn_lost. | Yury Selivanov | 2016-06-11 | 1 | -0/+11 |
| | | | | | Patch by Łukasz Langa. | ||||
| * | Issue #27243: Fix __aiter__ protocol | Yury Selivanov | 2016-06-09 | 2 | -0/+7 |
| | | |||||
| * | asyncio: Remove asyncio.timeout() context manager. | Yury Selivanov | 2016-06-08 | 1 | -53/+0 |
| | | | | | | | | 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 | ||||
