| Commit message (Expand) | Author | Age | Files | Lines |
| * | Fix _SelectorSslTransport.close() | Victor Stinner | 2015-01-29 | 1 | -1/+14 |
| * | Fix _SelectorSocketTransport constructor | Victor Stinner | 2015-01-29 | 1 | -5/+11 |
| * | Close transports in tests | Victor Stinner | 2015-01-15 | 1 | -0/+2 |
| * | Python issue #23243: Close explicitly transports in tests | Victor Stinner | 2015-01-15 | 1 | -144/+118 |
| * | Python issue #23243: Close explicitly event loops in tests | Victor Stinner | 2015-01-15 | 1 | -1/+15 |
| * | Tests: explicitly close event loops and transports | Victor Stinner | 2015-01-14 | 1 | -0/+1 |
| * | Python issue #23197: On SSL handshake failure, check if the waiter is cancelled | Victor Stinner | 2015-01-14 | 1 | -4/+16 |
| * | Python issue #22560: New SSL implementation based on ssl.MemoryBIO | Victor Stinner | 2015-01-14 | 1 | -1/+5 |
| * | Fix pyflakes warnings: remove unused imports and variables | Victor Stinner | 2014-12-19 | 1 | -3/+0 |
| * | Python issue #22921: Don't require OpenSSL SNI to pass hostname to ssl | Benjamin Peterson | 2014-11-25 | 1 | -1/+1 |
| * | Tulip issue #205: Fix a race condition in BaseSelectorEventLoop.sock_connect() | Victor Stinner | 2014-08-31 | 1 | -22/+52 |
| * | Don't log expected errors in unit tests | Victor Stinner | 2014-07-30 | 1 | -5/+9 |
| * | Fix unit tests in debug mode: mock a non-blocking socket for socket operations | Victor Stinner | 2014-07-30 | 1 | -5/+5 |
| * | Tulip issue #194: Don't use sys.getrefcount() in unit tests | Victor Stinner | 2014-07-23 | 1 | -2/+2 |
| * | Fix _on_handshake() tests | Victor Stinner | 2014-07-16 | 1 | -2/+4 |
| * | test_selector_events: remove duplicate call to _on_handshake() method | Victor Stinner | 2014-07-15 | 1 | -5/+3 |
| * | tests: make quiet the logs of SSL handshake failures when running tests in | Victor Stinner | 2014-07-14 | 1 | -7/+8 |
| * | Tulip issue #183: log socket events in debug mode | Victor Stinner | 2014-07-12 | 1 | -6/+6 |
| * | Enable the debug mode of event loops when the PYTHONASYNCIODEBUG environment | Victor Stinner | 2014-06-23 | 1 | -2/+0 |
| * | Fix pyflakes errors | Victor Stinner | 2014-06-18 | 1 | -4/+1 |
| * | Refactor tests: add a base TestCase class | Victor Stinner | 2014-06-18 | 1 | -10/+11 |
| * | Tulip issue #169, Python issue #21326: Add BaseEventLoop.is_closed() method | Victor Stinner | 2014-06-04 | 1 | -3/+14 |
| * | Fix for raising exception not derived from BaseException in _SelectorSslTrans... | Andrew Svetlov | 2014-05-27 | 1 | -0/+4 |
| * | Fix the second half of bugs.python.org/issue21447: race in _write_to_self(). | Guido van Rossum | 2014-05-06 | 1 | -2/+3 |
| * | Fix pyflakes warnings: remove unused variables and imports | Victor Stinner | 2014-02-26 | 1 | -2/+1 |
| * | Replace "unittest.mock" with "mock" in unit tests | Victor Stinner | 2014-02-26 | 1 | -135/+135 |
| * | Issue #139: Improve error messages on "fatal errors" | Victor Stinner | 2014-02-19 | 1 | -10/+26 |
| * | Add new event loop exception handling API (closes issue #80). | Yury Selivanov | 2014-02-18 | 1 | -5/+15 |
| * | Add support for UNIX Domain Sockets. Closes issue #81. | Yury Selivanov | 2014-02-18 | 1 | -1/+2 |
| * | Issue #126: call_soon(), call_soon_threadsafe(), call_later(), call_at() and | Victor Stinner | 2014-02-11 | 1 | -4/+5 |
| * | Remove scories of resolution/granularity | Victor Stinner | 2014-02-09 | 1 | -1/+0 |
| * | Don't export BaseEventLoop, BaseSelectorEventLoop nor BaseProactorEventLoop | Victor Stinner | 2014-01-25 | 1 | -1/+2 |
| * | Export more symbols: BaseEventLoop, BaseProactorEventLoop, | Victor Stinner | 2014-01-25 | 1 | -2/+1 |
| * | Add a granularity attribute to BaseEventLoop: maximum between the resolution of | Victor Stinner | 2014-01-25 | 1 | -1/+3 |
| * | Unit tests: pick symbols from the asyncio module | Victor Stinner | 2014-01-24 | 1 | -5/+4 |
| * | Unit tests use the main asyncio module instead of submodules like events | Victor Stinner | 2014-01-24 | 1 | -32/+32 |
| * | Replace some asserts with proper exceptions. | Guido van Rossum | 2013-11-27 | 1 | -4/+5 |
| * | Support bytearray/memoryview arguments to write(), sendto(). Fixes issue 27. | Guido van Rossum | 2013-11-27 | 1 | -0/+105 |
| * | Experimental bytearray buffer. | Guido van Rossum | 2013-11-26 | 1 | -43/+46 |
| * | Generalized error handling callback for DatastoreProtocol. | Guido van Rossum | 2013-11-15 | 1 | -10/+23 |
| * | Better-looking errors when ssl module cannot be imported. Fixes issue #77. Af... | Guido van Rossum | 2013-11-01 | 1 | -0/+20 |
| * | refactor ssl transport ready loop | Nikolay Kim | 2013-10-31 | 1 | -51/+83 |
| * | Make various asyncio test files individually runnable. | Guido van Rossum | 2013-10-20 | 1 | -0/+4 |
| * | Merge | Guido van Rossum | 2013-10-18 | 1 | -6/+6 |
| * | Merge | Guido van Rossum | 2013-10-17 | 1 | -6/+6 |
| * | Merge eof_received() change. | Guido van Rossum | 2013-10-15 | 1 | -0/+12 |
| * | Rename tests from foo_test.py to test_foo.py, to match stdlib preference. | Guido van Rossum | 2013-10-14 | 1 | -0/+1473 |