| Commit message (Expand) | Author | Age | Files | Lines |
* | Merge 3.5 (asyncio) | Yury Selivanov | 2016-06-28 | 1 | -1/+2 |
|\ |
|
| * | asyncio: Use socket specs for getaddrinfo() in sock_connect() | Yury Selivanov | 2016-06-28 | 1 | -1/+2 |
|
|
* | | Merge 3.5 (issue #27223) | Yury Selivanov | 2016-06-11 | 1 | -0/+11 |
|\ \
| |/ |
|
| * | Issue #27223: aio: Fix _read_ready and _write_ready to respect _conn_lost. | Yury Selivanov | 2016-06-11 | 1 | -0/+11 |
|
|
* | | Merge 3.5 (issue #27136, asyncio) | Yury Selivanov | 2016-06-08 | 1 | -10/+14 |
|\ \
| |/ |
|
| * | Issue #27136: Fix DNS static resolution; don't use it in getaddrinfo | Yury Selivanov | 2016-06-08 | 1 | -10/+14 |
|
|
* | | Merge 3.5 (Issue #27041) | Yury Selivanov | 2016-05-16 | 1 | -5/+5 |
|\ \
| |/ |
|
| * | Issue #27041: asyncio: Add loop.create_future method | Yury Selivanov | 2016-05-16 | 1 | -5/+5 |
|
|
* | | Issue #26778: Fixed "a/an/and" typos in code comment, documentation and error | Serhiy Storchaka | 2016-04-17 | 1 | -1/+1 |
|\ \
| |/ |
|
| * | Issue #26778: Fixed "a/an/and" typos in code comment and documentation. | Serhiy Storchaka | 2016-04-17 | 1 | -1/+1 |
|
|
* | | Merge 3.5 (asyncio) | Victor Stinner | 2016-04-01 | 1 | -2/+1 |
|\ \
| |/ |
|
| * | asyncio: Don't log ConnectionAbortedError | Victor Stinner | 2016-04-01 | 1 | -2/+1 |
|
|
* | | Add a source parameter to warnings.warn() | Victor Stinner | 2016-03-22 | 1 | -1/+2 |
|/ |
|
* | Fix error message in asyncio.selector_events. | Victor Stinner | 2016-02-01 | 1 | -6/+6 |
|
|
* | asyncio: Skip getaddrinfo if host is already resolved. | Yury Selivanov | 2015-12-17 | 1 | -2/+1 |
|
|
* | asyncio: Cleanup Future API | Yury Selivanov | 2015-11-17 | 1 | -2/+4 |
|
|
* | asyncio: Add Transport.is_closing() | Yury Selivanov | 2015-11-16 | 1 | -0/+3 |
|
|
* | Issue #25114, asyncio: add ssl_object extra info to SSL transports | Victor Stinner | 2015-09-21 | 1 | -0/+1 |
|
|
* | asyncio: Sync with upstream (compat module) | Yury Selivanov | 2015-08-04 | 1 | -2/+2 |
|
|
* | Issue #23879, asyncio: SelectorEventLoop.sock_connect() must not call connect() | Victor Stinner | 2015-04-07 | 1 | -8/+6 |
|
|
* | asyncio: Fix _SelectorTransport.__repr__() if the event loop is closed | Victor Stinner | 2015-03-27 | 1 | -1/+1 |
|
|
* | asyncio: Only call _check_resolved_address() in debug mode | Victor Stinner | 2015-02-04 | 1 | -1/+2 |
|
|
* | asyncio: BaseSelectorEventLoop uses directly the private _debug attribute | Victor Stinner | 2015-02-04 | 1 | -5/+5 |
|
|
* | Issue #23243, asyncio: Emit a ResourceWarning when an event loop or a transport | Victor Stinner | 2015-01-29 | 1 | -0/+16 |
|
|
* | asyncio: sync with Tulip | Victor Stinner | 2015-01-29 | 1 | -6/+38 |
|
|
* | asyncio: sync with Tulip | Victor Stinner | 2015-01-29 | 1 | -3/+10 |
|
|
* | asyncio: Fix _SelectorSocketTransport constructor | Victor Stinner | 2015-01-28 | 1 | -1/+3 |
|
|
* | asyncio: SSL transports now clear their reference to the waiter | Victor Stinner | 2015-01-28 | 1 | -11/+16 |
|
|
* | asyncio: pyflakes, remove unused import | Victor Stinner | 2015-01-21 | 1 | -1/+0 |
|
|
* | asyncio: sync with Tulip | Victor Stinner | 2015-01-14 | 1 | -2/+3 |
|
|
* | Issue #23197: On SSL handshake failure on matching hostname, check if the | Victor Stinner | 2015-01-14 | 1 | -1/+2 |
|
|
* | Issue #23197, asyncio: On SSL handshake failure, check if the waiter is | Victor Stinner | 2015-01-14 | 1 | -1/+1 |
|
|
* | Issue #22560: New SSL implementation based on ssl.MemoryBIO | Victor Stinner | 2015-01-13 | 1 | -21/+24 |
|
|
* | asyncio: sync with Tulip | Victor Stinner | 2015-01-09 | 1 | -1/+0 |
|
|
* | asyncio: sync with Tulip | Victor Stinner | 2015-01-09 | 1 | -3/+3 |
|
|
* | asyncio: Truncate to 80 columns | Victor Stinner | 2015-01-08 | 1 | -3/+4 |
|
|
* | asyncio: _make_ssl_transport: make the waiter parameter optional | Victor Stinner | 2015-01-08 | 1 | -2/+2 |
|
|
* | Issue #22926: In debug mode, call_soon(), call_at() and call_later() methods of | Victor Stinner | 2014-12-26 | 1 | -1/+1 |
|
|
* | don't require OpenSSL SNI to pass hostname to ssl functions (#22921) | Benjamin Peterson | 2014-11-23 | 1 | -1/+1 |
|
|
* | asyncio: BaseSelectorEventLoop.close() now closes the self-pipe before calling | Victor Stinner | 2014-11-20 | 1 | -1/+3 |
|
|
* | asyncio: Move loop attribute to _FlowControlMixin | Victor Stinner | 2014-11-05 | 1 | -2/+1 |
|
|
* | Issue #22641: In asyncio, the default SSL context for client connections is n... | Antoine Pitrou | 2014-10-15 | 1 | -6/+7 |
|
|
* | asyncio: enhance protocol representation | Victor Stinner | 2014-10-12 | 1 | -1/+6 |
|
|
* | asyncio, Tulip issue 205: Fix a race condition in BaseSelectorEventLoop.sock_... | Victor Stinner | 2014-08-31 | 1 | -13/+31 |
|
|
* | asyncio: sync with Tulip | Victor Stinner | 2014-08-25 | 1 | -15/+16 |
|
|
* | Close #22063: socket operations (socket,recv, sock_sendall, sock_connect, | Victor Stinner | 2014-07-29 | 1 | -0/+8 |
|
|
* | asyncio: sync with Tulip | Victor Stinner | 2014-07-25 | 1 | -1/+4 |
|
|
* | Python issue #21645, Tulip issue 192: Rewrite signal handling | Victor Stinner | 2014-07-17 | 1 | -1/+5 |
|
|
* | asyncio: sync with Tulip | Victor Stinner | 2014-07-12 | 1 | -13/+76 |
|
|
* | asyncio, Tulip issue 180: Make Server attributes and methods private | Victor Stinner | 2014-07-11 | 1 | -2/+2 |
|
|