| Commit message (Expand) | Author | Age | Files | Lines |
* | 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 |
|
|
* | asyncion, Tulip issue 181: BaseEventLoop.create_datagram_endpoint() now waits | Victor Stinner | 2014-07-08 | 1 | -3/+10 |
|
|
* | asyncio: sync with Tulip | Victor Stinner | 2014-07-07 | 1 | -1/+1 |
|
|
* | asyncio: sync with Tulip | Victor Stinner | 2014-07-07 | 1 | -1/+1 |
|
|
* | Closes #21886, #21447: Fix a race condition in asyncio when setting the result | Victor Stinner | 2014-07-05 | 1 | -2/+3 |
|
|
* | asyncio, Tulip issue 171: BaseEventLoop.close() now raises an exception if the | Victor Stinner | 2014-06-22 | 1 | -1/+1 |
|
|
* | Tulip issue 83: document more asyncio functions in docstrings | Victor Stinner | 2014-06-19 | 1 | -4/+37 |
|
|
* | Closes #21595: asyncio.BaseSelectorEventLoop._read_from_self() now reads all | Victor Stinner | 2014-06-19 | 1 | -4/+9 |
|
|
* | Issue #21326: Add a new is_closed() method to asyncio.BaseEventLoop | Victor Stinner | 2014-06-10 | 1 | -8/+8 |
|
|
* | Fix for raising exception not derived from BaseException in _SelectorSslTrans... | Andrew Svetlov | 2014-05-27 | 1 | -1/+1 |
|
|
* | asyncio: Fix the second half of issue #21447: race in _write_to_self(). | Guido van Rossum | 2014-05-06 | 1 | -4/+11 |
|
|
* | asyncio: Synchronize with Tulip | Victor Stinner | 2014-03-05 | 1 | -0/+8 |
|
|
* | asyncio/windows_events.py: use more revelant names to overlapped callbacks | Victor Stinner | 2014-02-26 | 1 | -2/+1 |
|
|
* | asyncio: Fix spelling and typos. | Yury Selivanov | 2014-02-19 | 1 | -1/+1 |
|
|
* | asyncio, Tulip issue 139: Improve error messages on "fatal errors" | Victor Stinner | 2014-02-19 | 1 | -10/+12 |
|
|
* | asyncio.transports: Make _ProactorBasePipeTransport use _FlowControlMixin | Yury Selivanov | 2014-02-18 | 1 | -71/+2 |
|
|
* | asyncio: New error handling API. Issue #20681. | Yury Selivanov | 2014-02-18 | 1 | -8/+27 |
|
|
* | ayncio, Tulip issue 129: BaseEventLoop.sock_connect() now raises an error if | Victor Stinner | 2014-02-13 | 1 | -12/+8 |
|
|
* | asyncio: Tulip issue 112: Inline make_handle() into Handle constructor | Victor Stinner | 2014-02-09 | 1 | -2/+2 |
|
|
* | Issue #20505: Remove resolution and _granularity from selectors and asyncio | Victor Stinner | 2014-02-07 | 1 | -1/+0 |
|
|
* | asyncio: Refactoring: move write flow control to a subclass/mixin. | Guido van Rossum | 2014-01-29 | 1 | -37/+61 |
|
|
* | Merge latest Tulip into asyncio | Victor Stinner | 2014-01-25 | 1 | -1/+1 |
|
|
* | Update asyncio from the Tulip project | Victor Stinner | 2014-01-25 | 1 | -0/+2 |
|
|
* | Issue #20311: asyncio: Add a granularity attribute to BaseEventLoop: maximum | Victor Stinner | 2014-01-25 | 1 | -0/+1 |
|
|
* | Issue #19509: Finish implementation of check_hostname | Christian Heimes | 2013-12-05 | 1 | -11/+14 |
|
|
* | asyncio: Change write buffer use to avoid O(N**2). Make write()/sendto() acce... | Guido van Rossum | 2013-11-27 | 1 | -31/+51 |
|
|
* | Keep asyncio working with Python 3.3 too. | Guido van Rossum | 2013-11-23 | 1 | -2/+9 |
|
|
* | Issue #19735: Implement private function ssl._create_stdlib_context() to | Christian Heimes | 2013-11-23 | 1 | -4/+2 |
|
|
* | asyncio: Replace connection_refused() with error_received(). | Guido van Rossum | 2013-11-16 | 1 | -11/+6 |
|
|
* | asyncio: Better-looking errors when ssl module cannot be imported. In part by... | Guido van Rossum | 2013-11-01 | 1 | -12/+19 |
|
|
* | asyncio: Log a warning when eof_received() returns true and using ssl. | Guido van Rossum | 2013-11-01 | 1 | -1/+4 |
|
|
* | asyncio: Refactor ssl transport ready loop (Nikolay Kim). | Guido van Rossum | 2013-11-01 | 1 | -41/+53 |
|
|
* | asyncio: Add server_hostname as create_connection() argument, with secure def... | Guido van Rossum | 2013-11-01 | 1 | -2/+2 |
|
|
* | asyncio: Fold some long lines. | Guido van Rossum | 2013-11-01 | 1 | -1/+2 |
|
|
* | asyncio: Pause accepting whenever accept() returns certain errors. Fixes asyn... | Guido van Rossum | 2013-11-01 | 1 | -6/+15 |
|
|
* | asyncio: When not closing the connection after receiving EOF, still remove th... | Guido van Rossum | 2013-10-30 | 1 | -1/+6 |
|
|
* | Issue #19299: fix refleak test failures in test_asyncio | Antoine Pitrou | 2013-10-19 | 1 | -0/+1 |
|
|
* | Verify hostname if verify_mode is CERT_OPTIONAL too. | Guido van Rossum | 2013-10-19 | 1 | -1/+1 |
|
|
* | Write flow control for asyncio (includes asyncio.streams overhaul). | Guido van Rossum | 2013-10-18 | 1 | -14/+64 |
|
|
* | Important race condition fix for Tulip. | Guido van Rossum | 2013-10-18 | 1 | -33/+18 |
|
|
* | Rename Transport.pause/resume to pause_reading/pause_writing. Also relax time... | Guido van Rossum | 2013-10-18 | 1 | -7/+7 |
|
|
* | Rename the logger to plain "logger". | Guido van Rossum | 2013-10-17 | 1 | -7/+7 |
|
|