| Commit message (Expand) | Author | Age | Files | Lines |
| ... | |
| * | Issue #157: Improve test_events.py, avoid run_briefly() which is not reliable | Victor Stinner | 2014-03-06 | 1 | -64/+65 |
| * | Skip test_remove_fds_after_closing() for IocpEventLoop | Victor Stinner | 2014-03-06 | 1 | -0/+3 |
| * | Fix ResourceWarning warnings | Victor Stinner | 2014-03-06 | 1 | -0/+4 |
| * | Issue #159: Fix windows_utils.socketpair() | Victor Stinner | 2014-03-05 | 1 | -4/+23 |
| * | Reject add/remove reader/writer when event loop is closed. | Guido van Rossum | 2014-03-04 | 1 | -0/+20 |
| * | Simplify test_events.py, don't use non local variables and don't call assert | Victor Stinner | 2014-02-26 | 1 | -186/+79 |
| * | Fix pyflakes warnings: remove unused variables and imports | Victor Stinner | 2014-02-26 | 7 | -16/+6 |
| * | Cleanup test_unix_events.py (indentation) | Victor Stinner | 2014-02-26 | 1 | -9/+6 |
| * | Replace "unittest.mock" with "mock" in unit tests | Victor Stinner | 2014-02-26 | 12 | -384/+384 |
| * | _check_resolved_address() must also accept IPv6 without flow_info and scope_id: | Victor Stinner | 2014-02-20 | 1 | -3/+6 |
| * | Oops, and now fix also the unit test for IPv6 address: test_sock_connect_addr... | Victor Stinner | 2014-02-20 | 1 | -4/+3 |
| * | Issue #136: Add get/set_debug() methods to BaseEventLoopTests. Add also a | Victor Stinner | 2014-02-19 | 2 | -0/+34 |
| * | Fix tests on UNIX sockets on Mac OS X 10.4 (Tiger): don't test the sockname | Victor Stinner | 2014-02-19 | 1 | -5/+27 |
| * | WriteTransport.set_write_buffer_size to call _maybe_pause_protocol (closes is... | Yury Selivanov | 2014-02-19 | 1 | -0/+23 |
| * | pep8-ify the code. | Yury Selivanov | 2014-02-18 | 3 | -5/+17 |
| * | Fix spelling & typos | Yury Selivanov | 2014-02-18 | 4 | -6/+6 |
| * | Issue #143: UNIX domain methods, fix ResourceWarning and DeprecationWarning | Victor Stinner | 2014-02-19 | 1 | -13/+15 |
| * | Issue #139: Improve error messages on "fatal errors" | Victor Stinner | 2014-02-19 | 3 | -16/+40 |
| * | Add new event loop exception handling API (closes issue #80). | Yury Selivanov | 2014-02-18 | 6 | -59/+258 |
| * | Add support for UNIX Domain Sockets. Closes issue #81. | Yury Selivanov | 2014-02-18 | 5 | -156/+475 |
| * | Skip test_read_pty_output() on OpenBSD | Victor Stinner | 2014-02-18 | 1 | -0/+4 |
| * | Fix test_events.py: skip IPv6 if IPv6 is disabled on the host | Victor Stinner | 2014-02-13 | 1 | -1/+5 |
| * | Issue #129: BaseEventLoop.sock_connect() now raises an error if the address is | Victor Stinner | 2014-02-13 | 1 | -0/+12 |
| * | Change as_completed() to use a Queue, to avoid O(N**2) behavior. Fixes issue ... | Guido van Rossum | 2014-02-12 | 1 | -1/+22 |
| * | Python issue #20495: Skip test_read_pty_output() of test_asyncio on FreeBSD | Victor Stinner | 2014-02-11 | 1 | -0/+2 |
| * | Issue #131: as_completed() and wait() now raises a TypeError if the list of | Victor Stinner | 2014-02-11 | 1 | -0/+26 |
| * | Issue #130: Add more checks on subprocess_exec/subprocess_shell parameters | Victor Stinner | 2014-02-11 | 1 | -2/+52 |
| * | Issue #126: call_soon(), call_soon_threadsafe(), call_later(), call_at() and | Victor Stinner | 2014-02-11 | 4 | -12/+29 |
| * | Python issue #20505: BaseEventLoop uses again the resolution of the clock to | Victor Stinner | 2014-02-10 | 1 | -4/+9 |
| * | Issue #112: Inline make_handle() into Handle constructor | Victor Stinner | 2014-02-10 | 1 | -2/+2 |
| * | Remove Process.subprocess attribute; it's too easy to get inconsistent Process | Victor Stinner | 2014-02-09 | 1 | -20/+0 |
| * | Fix test bug (should use list, not set). | Guido van Rossum | 2014-02-08 | 1 | -1/+1 |
| * | Remove scories of resolution/granularity | Victor Stinner | 2014-02-09 | 3 | -7/+0 |
| * | Remove resolution and _granularity from selectors and asyncio | Victor Stinner | 2014-02-07 | 2 | -17/+9 |
| * | tasks: Fix as_completed, gather & wait to work with duplicate coroutines. Iss... | Yury Selivanov | 2014-02-06 | 1 | -8/+47 |
| * | streams.StreamReader: Add 'at_eof()' method | Yury Selivanov | 2014-02-06 | 1 | -0/+15 |
| * | streams.StreamReader: Use bytearray instead of deque of bytes for internal bu... | Yury Selivanov | 2014-02-04 | 1 | -27/+52 |
| * | Cosmetic improvement to test__run_once_logging() mock argument. | Guido van Rossum | 2014-02-04 | 1 | -5/+3 |
| * | Adjust unit tests regarding timings: tolerate slow buildbots, add a test on the | Victor Stinner | 2014-02-04 | 3 | -8/+17 |
| * | test_events: skip PTY tests on Mac OS X older than 10.6 | Victor Stinner | 2014-02-03 | 1 | -0/+6 |
| * | Replace Process.get_subprocess() method with a Process.subprocess read-only p... | Victor Stinner | 2014-02-03 | 1 | -9/+9 |
| * | Merge (manually) the subprocess_stream into default | Victor Stinner | 2014-02-01 | 1 | -0/+196 |
| * | Copy a bunch of fixes by Victor for the Proactor event loop from the CPython ... | Guido van Rossum | 2014-01-31 | 2 | -2/+9 |
| * | Normalize whitespace (use "make pep8" to verify). | Guido van Rossum | 2014-01-30 | 2 | -13/+14 |
| * | Future.set_exception(exc) now instanciate exc if it is a class | Victor Stinner | 2014-01-30 | 1 | -0/+5 |
| * | subprocess_shell() and subprocess_exec() methods of BaseEventLoop now raises a | Victor Stinner | 2014-01-29 | 1 | -0/+32 |
| * | wait_for() now accepts None as timeout | Victor Stinner | 2014-01-28 | 1 | -0/+11 |
| * | Rename {Empty,Full} to {QueueEmpty,QueueFull} and no longer get them from que... | Guido van Rossum | 2014-01-25 | 1 | -2/+2 |
| * | Locks refactor: use a separate context manager; remove Semaphore._locked. | Guido van Rossum | 2014-01-25 | 1 | -0/+35 |
| * | Make the new granularity attribute private | Victor Stinner | 2014-01-26 | 1 | -2/+2 |