| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | 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 | ||||
| * | Issue #27136: Fix DNS static resolution; don't use it in getaddrinfo | Yury Selivanov | 2016-06-08 | 3 | -87/+62 |
| | | | | | Patch by A. Jesse Jiryu Davis | ||||
| * | Fix typos in code comment and documentation | Martin Panter | 2016-06-04 | 1 | -1/+1 |
| | | |||||
| * | asyncio: Fix getaddrinfo to accept service names (for port) | Yury Selivanov | 2016-06-02 | 1 | -3/+19 |
| | | | | | Patch by A. Jesse Jiryu Davis | ||||
| * | asyncio: Support host=b'' for getaddrinfo | Yury Selivanov | 2016-06-02 | 1 | -1/+1 |
| | | |||||
| * | Issue #27076: Doc, comment and tests spelling fixes | Martin Panter | 2016-05-26 | 1 | -1/+1 |
| | | | | | Most fixes to Doc/ and Lib/ directories by Ville Skyttä. | ||||
| * | asyncio: Fix BytesWarning (use typed=True in lru_cache for _ipaddr_info) | Yury Selivanov | 2016-05-21 | 1 | -1/+1 |
| | | |||||
| * | 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. | ||||
| * | asyncio: Fix an SSL warning in StreamReaderProtocol.eof_received | Yury Selivanov | 2016-05-20 | 1 | -0/+7 |
| | | |||||
| * | asyncio: fix ResourceWarning related to subprocesses | Victor Stinner | 2016-05-20 | 1 | -0/+4 |
| | | | | | | | Issue #26741: asyncio: BaseSubprocessTransport._process_exited() now copies the return code from the child watched to the returncode attribute of the Popen object. On Python 3.6, it is required to avoid a ResourceWarning. | ||||
| * | asyncio/streams: Fix code style; delete LimitOverrunError.message attr | Yury Selivanov | 2016-05-16 | 1 | -33/+34 |
| | | |||||
