| Commit message (Expand) | Author | Age | Files | Lines |
| ... | |
| | * | Tulip issue #200: Log errors in debug mode instead of simply ignoring them. | Victor Stinner | 2014-08-25 | 4 | -4/+23 |
| | * | Tulip issue #200: _WaitHandleFuture._unregister_wait() now catchs and logs | Victor Stinner | 2014-08-25 | 1 | -3/+10 |
| | * | Don't log expected errors in unit tests | Victor Stinner | 2014-07-30 | 2 | -8/+14 |
| | * | _fatal_error() method of _UnixReadPipeTransport and _UnixWritePipeTransport now | Victor Stinner | 2014-07-30 | 1 | -2/+8 |
| | * | Fix unit tests in debug mode: mock a non-blocking socket for socket operations | Victor Stinner | 2014-07-30 | 3 | -5/+13 |
| | * | Python issue 22063: socket operations (sock_recv, sock_sendall, sock_connect, | Victor Stinner | 2014-07-30 | 2 | -24/+18 |
| | * | Fix debug log in BaseEventLoop.create_connection(): get the socket object from | Victor Stinner | 2014-07-30 | 3 | -1/+6 |
| | * | Fix _SelectorTransport.__repr__() if the transport was closed | Victor Stinner | 2014-07-30 | 1 | -14/+16 |
| | * | PipeServer.close() now cancels the "accept pipe" future which cancels the | Victor Stinner | 2014-07-30 | 1 | -3/+12 |
| | * | Python issue 22063: socket operations (socket,recv, sock_sendall, sock_connect, | Victor Stinner | 2014-07-29 | 3 | -0/+34 |
| | * | Use the new os.set_blocking() function of Python 3.5 if available | Victor Stinner | 2014-07-29 | 2 | -10/+14 |
| | * | Remove workaround in test_futures, no more needed | Victor Stinner | 2014-07-29 | 1 | -6/+0 |
| | * | _WaitHandleFuture.cancel() now notify IocpProactor through the overlapped | Victor Stinner | 2014-07-29 | 1 | -3/+13 |
| | * | Optimize IocpProactor.wait_for_handle() gets the result if the wait is signaled | Victor Stinner | 2014-07-29 | 1 | -6/+20 |
| | * | Fix repr(_WaitHandleFuture) | Victor Stinner | 2014-07-29 | 1 | -1/+1 |
| | * | _WaitHandleFuture and _OverlappedFuture: hide frames of internal calls in the | Victor Stinner | 2014-07-29 | 1 | -0/+6 |
| | * | Enhance representation of Future and Future subclasses | Victor Stinner | 2014-07-29 | 6 | -52/+60 |
| | * | test_locks: close the temporary event loop and check the condition lock | Victor Stinner | 2014-07-29 | 1 | -1/+4 |
| | * | Cleanup ProactorIocp._poll(): set the timeout to 0 after the first call to | Victor Stinner | 2014-07-29 | 1 | -2/+3 |
| | * | Tulip issue 196: ProactorIocp._register() now registers the overlapped in the | Victor Stinner | 2014-07-26 | 1 | -15/+38 |
| | * | Accept optional lock object in Condition ctor (#198) | Andrew Svetlov | 2014-07-26 | 2 | -3/+18 |
| | * | Tulip issue #196: _OverlappedFuture.set_result() now clears its reference to | Victor Stinner | 2014-07-26 | 1 | -5/+11 |
| | * | BaseSelectorEventLoop._write_to_self() now logs errors in debug mode | Victor Stinner | 2014-07-25 | 1 | -1/+4 |
| | * | Fix runtest.py to be able to log at level DEBUG | Victor Stinner | 2014-07-25 | 1 | -6/+8 |
| | * | Oops, fix previous commit: I wanted to do exactly the reverse: only clear the | Victor Stinner | 2014-07-25 | 1 | -5/+5 |
| | * | Tulip issue #196: IocpProactor._poll() clears the reference to the | Victor Stinner | 2014-07-25 | 1 | -0/+5 |
| | * | test_subprocess: relax timings for slow builbots | Victor Stinner | 2014-07-25 | 1 | -2/+2 |
| | * | _OverlappedFuture.set_exception() now cancels the overlapped operation. | Victor Stinner | 2014-07-25 | 1 | -0/+4 |
| | * | _WaitHandleFuture now unregisters its wait handler if WaitForSingleObject() | Victor Stinner | 2014-07-25 | 1 | -3/+4 |
| | * | Check if _WaitHandleFuture completed before unregistering it in the callback. | Victor Stinner | 2014-07-25 | 1 | -5/+23 |
| | * | _OverlappedFuture.cancel() now clears its reference to the overlapped object | Victor Stinner | 2014-07-25 | 2 | -21/+23 |
| | * | Fix _WaitHandleFuture.cancel(): return the result of the parent cancel() method | Victor Stinner | 2014-07-25 | 1 | -1/+1 |
| | * | IocpProactor.close(): cancel futures to cancel overlapped operations, instead | Victor Stinner | 2014-07-25 | 1 | -4/+12 |
| | * | tests: rename "f" to "fut" | Victor Stinner | 2014-07-25 | 1 | -13/+13 |
| | * | Tulip issue #195: Don't call UnregisterWait() twice if a _WaitHandleFuture is | Victor Stinner | 2014-07-25 | 2 | -9/+21 |
| | * | Add a __repr__() method to IocpProactor | Victor Stinner | 2014-07-25 | 1 | -0/+5 |
| | * | Add a destructor to IocpProactor which closes it | Victor Stinner | 2014-07-25 | 1 | -0/+3 |
| | * | _OverlappedFuture.cancel() doesn't cancel the overlapped anymore if it is done: | Victor Stinner | 2014-07-25 | 1 | -4/+12 |
| | * | Add the address of the overlapped object in repr(_OverlappedFuture) | Victor Stinner | 2014-07-25 | 1 | -4/+2 |
| | * | _OverlappedFuture truncates the source traceback to hide the call to the parent | Victor Stinner | 2014-07-25 | 1 | -0/+2 |
| | * | tests: relax timings for slow buildbots | Victor Stinner | 2014-07-24 | 1 | -4/+4 |
| | * | Python issue 20055: Fix BaseEventLoop.stop() docstring, incomplete sentence. | Victor Stinner | 2014-07-24 | 1 | -3/+3 |
| | * | Tulip issue #194: Don't use sys.getrefcount() in unit tests | Victor Stinner | 2014-07-23 | 2 | -11/+10 |
| | * | signal.set_wakeup_fd() can now raise an OSError on Python 3.5 | Victor Stinner | 2014-07-22 | 1 | -3/+3 |
| | * | Tulip issue #193: Convert StreamWriter.drain() to a classic coroutine | Victor Stinner | 2014-07-22 | 1 | -19/+18 |
| | * | Fix test_stdin_broken_pipe(): drain() is not a coroutine | Victor Stinner | 2014-07-21 | 1 | -2/+7 |
| | * | Fix asyncio.__all__: export also unix_events and windows_events symbols | Victor Stinner | 2014-07-18 | 1 | -6/+7 |
| | * | Python issue 21247: Fix a race condition in test_send_signal() of asyncio | Victor Stinner | 2014-07-17 | 1 | -4/+15 |
| | * | Tulip issue 192, Python issue 21645: Rewrite signal handling | Victor Stinner | 2014-07-17 | 5 | -7/+27 |
| | * | Fix test_stdin_broken_pipe(): drain() can also raise ConnectionResetError | Victor Stinner | 2014-07-17 | 1 | -2/+2 |