| Commit message (Expand) | Author | Age | Files | Lines |
| ... | |
| * | Don't export BaseEventLoop, BaseSelectorEventLoop nor BaseProactorEventLoop | Victor Stinner | 2014-01-25 | 4 | -8/+12 |
| * | Export more symbols: BaseEventLoop, BaseProactorEventLoop, | Victor Stinner | 2014-01-25 | 5 | -48/+43 |
| * | Add a granularity attribute to BaseEventLoop: maximum between the resolution of | Victor Stinner | 2014-01-25 | 3 | -1/+30 |
| * | Issue #111: StreamReader.readexactly() now raises an IncompleteReadError if the | Victor Stinner | 2014-01-24 | 1 | -2/+6 |
| * | Only skip PTY tests with the kqueue selector | Victor Stinner | 2014-01-24 | 1 | -6/+12 |
| * | _UnixWritePipeTransport now also supports character devices, as | Victor Stinner | 2014-01-24 | 1 | -0/+50 |
| * | 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 | 11 | -812/+778 |
| * | Skip test_events.test_read_pty_output() on Mac OS X older than 10.9 (Maverick) | Victor Stinner | 2014-01-23 | 1 | -0/+3 |
| * | wait_for() now cancels the future on timeout. Patch written by Gustavo | Victor Stinner | 2014-01-22 | 1 | -15/+14 |
| * | Fix ResourceWarning in test_windows_events: | Victor Stinner | 2014-01-11 | 1 | -0/+1 |
| * | Minimal pty support, by Jonathan Slenders. | Guido van Rossum | 2014-01-10 | 1 | -0/+42 |
| * | Victor Stinner (CPython issue 19967): Future can have __del__ thanks to PEP 442. | Guido van Rossum | 2013-12-19 | 1 | -1/+5 |
| * | Shorten lines. | Guido van Rossum | 2013-12-19 | 1 | -1/+2 |
| * | Skip some tests if SNI not supported. | Guido van Rossum | 2013-12-18 | 1 | -1/+7 |
| * | Relax some more timeouts. | Guido van Rossum | 2013-12-18 | 1 | -2/+2 |
| * | Skip SSL tests with IOCP event loop. | Guido van Rossum | 2013-12-06 | 1 | -2/+11 |
| * | SSL hostname checking changes from CPython repo by Christian Heimes. | Guido van Rossum | 2013-12-06 | 5 | -17/+305 |
| * | Add Task.current_task([loop]). By Vladimir Kryachko. | Guido van Rossum | 2013-12-05 | 1 | -0/+36 |
| * | Change proactor buffer management. | Guido van Rossum | 2013-12-02 | 1 | -7/+7 |
| * | Incorporate selectors.py refactoring from CPython repo. | Guido van Rossum | 2013-12-02 | 1 | -1/+1 |
| * | Make writelines() join the lines before calling write(). Fixes issue 92. | Guido van Rossum | 2013-12-02 | 1 | -2/+8 |
| * | 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 |
| * | Fix amount of indentation -- CPython's precommit script complained. | Guido van Rossum | 2013-11-27 | 1 | -5/+5 |
| * | Fix get_event_loop() to call set_event_loop() when setting the loop. By Antho... | Guido van Rossum | 2013-11-27 | 1 | -0/+16 |
| * | Hopeful fix for CPython issue 19765. | Guido van Rossum | 2013-11-25 | 1 | -0/+1 |
| * | Change mock pipe to mock socket. Hope to fix CPython issue 19750. | Guido van Rossum | 2013-11-25 | 1 | -1/+1 |
| * | Change bounded semaphore into a subclass, like threading.[Bounded]Semaphore. | Guido van Rossum | 2013-11-23 | 1 | -1/+1 |
| * | Relax timing (from upstream CPython repo). | Guido van Rossum | 2013-11-23 | 1 | -1/+1 |
| * | Use socketpair() from test_utils in tests | Sa?l Ibarra Corretg? | 2013-11-23 | 1 | -1/+1 |
| * | Pass cancellation from wrapping Future to wrapped Future. Fixes issue 88. By ... | Guido van Rossum | 2013-11-22 | 1 | -0/+18 |
| * | From CPython: relax a timeout. | Guido van Rossum | 2013-11-22 | 1 | -1/+1 |
| * | Allow and correctly implement Semaphore(0). | Guido van Rossum | 2013-11-21 | 1 | -0/+4 |
| * | Add streams.start_server(), by Gustavo Carneiro. | Guido van Rossum | 2013-11-19 | 1 | -0/+66 |
| * | Generalized error handling callback for DatastoreProtocol. | Guido van Rossum | 2013-11-15 | 3 | -13/+26 |
| * | Increase timeout in test_popen() for buildbots. | Guido van Rossum | 2013-11-15 | 1 | -1/+2 |
| * | Refactor waitpid mocks. Patch by Anthony Baire. | Guido van Rossum | 2013-11-14 | 1 | -249/+186 |
| * | Use more specific asserts for some tests. From CPython issue 19589 by Serhiy ... | Guido van Rossum | 2013-11-14 | 3 | -10/+12 |
| * | Avoid ResourceWarning. Fix for CPython issue 19580 by Vajrasky Kok. | Guido van Rossum | 2013-11-14 | 1 | -4/+18 |
| * | Relax timing requirement. Fixes CPython issue 19579. | Guido van Rossum | 2013-11-13 | 1 | -2/+2 |
| * | Fix from Anthony Baire for CPython issue 19566. | Guido van Rossum | 2013-11-13 | 2 | -14/+19 |
| * | Improved tests for selectors.py by Arnaud Faure. | Guido van Rossum | 2013-11-07 | 1 | -1/+66 |
| * | Add close() back to Unix selector event loop, to remove all signal handlers. | Guido van Rossum | 2013-11-06 | 1 | -0/+16 |
| * | Refactor SIGCHLD handler, by Anthony Baire. Fixes issue 67. | Guido van Rossum | 2013-11-04 | 2 | -130/+901 |
| * | Relax test for process return code on Windows. | Richard Oudkerk | 2013-11-04 | 1 | -2/+2 |
| * | Locks improvements by Arnaud Faure: better repr(), change Condition structure. | Guido van Rossum | 2013-11-03 | 1 | -1/+70 |
| * | Slight rearrangement of tests for server_hostname=... | Guido van Rossum | 2013-11-01 | 1 | -3/+4 |
| * | Better-looking errors when ssl module cannot be imported. Fixes issue #77. Af... | Guido van Rossum | 2013-11-01 | 1 | -0/+20 |