Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Merge asyncio from 3.5 | Guido van Rossum | 2016-08-31 |
|\ | |||
| * | Fix ordering issues in UNIX read/write pipe transport constructors. | Guido van Rossum | 2016-08-31 |
| | | | | | | | | 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 |
| | | | | | | | | Upstream https://github.com/python/asyncio/pull/374 by Ron Frederick. | ||
* | | Closes #27904: Improved logging statements to defer formatting until needed. | Vinay Sajip | 2016-08-31 |
| | | |||
* | | Issue #27895: Spelling fixes (Contributed by Ville Skyttä). | Raymond Hettinger | 2016-08-30 |
| | | |||
* | | In asyncio.locks.Lock.acquire(): Avoid deadlock when a cancelled future is ↵ | Guido van Rossum | 2016-08-23 |
|\| | | | | | | | in self._waiters. (Merge 3.5->3.6) | ||
| * | In asyncio.locks.Lock.acquire(): Avoid deadlock when a cancelled future is ↵ | Guido van Rossum | 2016-08-23 |
| | | | | | | | | in self._waiters. | ||
* | | Merge 3.5 (issue #27392) | Yury Selivanov | 2016-07-12 |
|\| | |||
| * | Issue #27392: Add loop.connect_accepted_socket(). | Yury Selivanov | 2016-07-12 |
| | | | | | | | | Patch by Jim Fulton. | ||
* | | Merge 3.5 (asyncio) | Yury Selivanov | 2016-06-28 |
|\| | |||
| * | asyncio: Use socket specs for getaddrinfo() in sock_connect() | Yury Selivanov | 2016-06-28 |
| | | | | | | | | Patch by Martin Richard. GH PR #365. | ||
* | | Merge 3.5 (asyncio) | Yury Selivanov | 2016-06-28 |
|\| | |||
| * | asyncio: Fix NameError in sslproto _fatal_error() | Yury Selivanov | 2016-06-28 |
| | | | | | | | | Patch by Richard Walker. | ||
* | | Merge 3.5 (issue #22970) | Yury Selivanov | 2016-06-11 |
|\| | |||
| * | Issue #22970: asyncio: Fix inconsistency cancelling Condition.wait. | Yury Selivanov | 2016-06-11 |
| | | | | | | | | Patch by David Coles. | ||
* | | Merge 3.5 (issue #27223) | Yury Selivanov | 2016-06-11 |
|\| | |||
| * | Issue #27223: aio: Fix _read_ready and _write_ready to respect _conn_lost. | Yury Selivanov | 2016-06-11 |
| | | | | | | | | Patch by Łukasz Langa. | ||
* | | Merge 3.5 (issue #27243) | Yury Selivanov | 2016-06-09 |
|\| | |||
| * | Issue #27243: Fix __aiter__ protocol | Yury Selivanov | 2016-06-09 |
| | | |||
* | | Merge 3.5 (asyncio) | Yury Selivanov | 2016-06-08 |
|\| | |||
| * | asyncio: Remove asyncio.timeout() context manager. | Yury Selivanov | 2016-06-08 |
| | | | | | | | | | | | | | | 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 | ||
* | | Merge 3.5 (issue #27136, asyncio) | Yury Selivanov | 2016-06-08 |
|\| | |||
| * | Issue #27136: Fix DNS static resolution; don't use it in getaddrinfo | Yury Selivanov | 2016-06-08 |
| | | | | | | | | Patch by A. Jesse Jiryu Davis | ||
* | | Merge typo fixes from 3.5 | Martin Panter | 2016-06-04 |
|\| | |||
| * | Fix typos in code comment and documentation | Martin Panter | 2016-06-04 |
| | | |||
* | | Merge 3.5 (asyncio) | Yury Selivanov | 2016-06-02 |
|\| | |||
| * | asyncio: Fix getaddrinfo to accept service names (for port) | Yury Selivanov | 2016-06-02 |
| | | | | | | | | Patch by A. Jesse Jiryu Davis | ||
* | | Merge 3.5 (asyncio) | Yury Selivanov | 2016-06-02 |
|\| | |||
| * | asyncio: Support host=b'' for getaddrinfo | Yury Selivanov | 2016-06-02 |
| | | |||
* | | Issue #27076: Merge spelling from 3.5 | Martin Panter | 2016-05-26 |
|\| | |||
| * | Issue #27076: Doc, comment and tests spelling fixes | Martin Panter | 2016-05-26 |
| | | | | | | | | Most fixes to Doc/ and Lib/ directories by Ville Skyttä. | ||
* | | Merge 3.5 (asyncio) | Yury Selivanov | 2016-05-21 |
|\| | |||
| * | asyncio: Fix BytesWarning (use typed=True in lru_cache for _ipaddr_info) | Yury Selivanov | 2016-05-21 |
| | | |||
* | | Merge 3.5 (asyncio) | Yury Selivanov | 2016-05-20 |
|\| | |||
| * | asyncio: Fix getaddrinfo to accept None/str/bytes for 'port' arg | Yury Selivanov | 2016-05-20 |
| | | | | | | | | Patch by A. Jesse Jiryu Davis. | ||
* | | Merge 3.5 (asyncio) | Yury Selivanov | 2016-05-20 |
|\| | |||
| * | asyncio: Fix an SSL warning in StreamReaderProtocol.eof_received | Yury Selivanov | 2016-05-20 |
| | | |||
* | | Merge 3.5 (issue #26741) | Victor Stinner | 2016-05-20 |
|\| | |||
| * | asyncio: fix ResourceWarning related to subprocesses | Victor Stinner | 2016-05-20 |
| | | | | | | | | | | | | 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. | ||
* | | Merge 3.5 (asyncio) | Yury Selivanov | 2016-05-16 |
|\| | |||
| * | asyncio/streams: Fix code style; delete LimitOverrunError.message attr | Yury Selivanov | 2016-05-16 |
| | | |||
* | | Merge 3.5 (Issue #27041) | Yury Selivanov | 2016-05-16 |
|\| | |||
| * | Issue #27041: asyncio: Add loop.create_future method | Yury Selivanov | 2016-05-16 |
| | | |||
* | | Merge 3.5 (issue #27040) | Yury Selivanov | 2016-05-16 |
|\| | |||
| * | Issue #27040: Add loop.get_exception_handler method | Yury Selivanov | 2016-05-16 |
| | | |||
* | | Merge 3.5 (asyncio) | Yury Selivanov | 2016-05-13 |
|\| | |||
| * | asyncio: Fix unix pipe transport 'repr' methods | Yury Selivanov | 2016-05-13 |
| | | | | | | | | | | Patch by Vincent Michel. See also https://github.com/python/asyncio/pull/326 | ||
* | | Merge 3.5 (asyncio) | Yury Selivanov | 2016-05-13 |
|\| | |||
| * | asyncio: Break reference cycle in StreamReaderProtocol.connection_lost | Yury Selivanov | 2016-05-13 |
| | | |||
* | | Merge 3.5 (issue #26848) | Yury Selivanov | 2016-05-13 |
|\| |