summaryrefslogtreecommitdiff
path: root/asyncio/windows_events.py
Commit message (Expand)AuthorAgeFilesLines
* Python issue #23095: Rewrite _WaitHandleFuture.cancel()Victor Stinner2015-01-211-34/+134
* Close the transport on subprocess creation failureVictor Stinner2015-01-151-1/+6
* Truncate to 80 columnsVictor Stinner2015-01-091-1/+2
* IocpProactor.wait_for_handle() test now also checks the result of the futureVictor Stinner2014-12-191-0/+5
* Fix typoVictor Stinner2014-12-181-1/+1
* Tulip issue #200: Log errors in debug mode instead of simply ignoring them.Victor Stinner2014-08-251-0/+3
* Tulip issue #200: _WaitHandleFuture._unregister_wait() now catchs and logsVictor Stinner2014-08-251-3/+10
* PipeServer.close() now cancels the "accept pipe" future which cancels theVictor Stinner2014-07-301-3/+12
* _WaitHandleFuture.cancel() now notify IocpProactor through the overlappedVictor Stinner2014-07-291-3/+13
* Optimize IocpProactor.wait_for_handle() gets the result if the wait is signaledVictor Stinner2014-07-291-6/+20
* Fix repr(_WaitHandleFuture)Victor Stinner2014-07-291-1/+1
* _WaitHandleFuture and _OverlappedFuture: hide frames of internal calls in theVictor Stinner2014-07-291-0/+6
* Enhance representation of Future and Future subclassesVictor Stinner2014-07-291-17/+10
* Cleanup ProactorIocp._poll(): set the timeout to 0 after the first call toVictor Stinner2014-07-291-2/+3
* Tulip issue 196: ProactorIocp._register() now registers the overlapped in theVictor Stinner2014-07-261-15/+38
* Tulip issue #196: _OverlappedFuture.set_result() now clears its reference toVictor Stinner2014-07-261-5/+11
* Oops, fix previous commit: I wanted to do exactly the reverse: only clear theVictor Stinner2014-07-251-5/+5
* Tulip issue #196: IocpProactor._poll() clears the reference to theVictor Stinner2014-07-251-0/+5
* _OverlappedFuture.set_exception() now cancels the overlapped operation.Victor Stinner2014-07-251-0/+4
* _WaitHandleFuture now unregisters its wait handler if WaitForSingleObject()Victor Stinner2014-07-251-3/+4
* Check if _WaitHandleFuture completed before unregistering it in the callback.Victor Stinner2014-07-251-5/+23
* _OverlappedFuture.cancel() now clears its reference to the overlapped objectVictor Stinner2014-07-251-15/+21
* Fix _WaitHandleFuture.cancel(): return the result of the parent cancel() methodVictor Stinner2014-07-251-1/+1
* IocpProactor.close(): cancel futures to cancel overlapped operations, insteadVictor Stinner2014-07-251-4/+12
* Tulip issue #195: Don't call UnregisterWait() twice if a _WaitHandleFuture isVictor Stinner2014-07-251-8/+10
* Add a __repr__() method to IocpProactorVictor Stinner2014-07-251-0/+5
* Add a destructor to IocpProactor which closes itVictor Stinner2014-07-251-0/+3
* _OverlappedFuture.cancel() doesn't cancel the overlapped anymore if it is done:Victor Stinner2014-07-251-4/+12
* Add the address of the overlapped object in repr(_OverlappedFuture)Victor Stinner2014-07-251-4/+2
* _OverlappedFuture truncates the source traceback to hide the call to the parentVictor Stinner2014-07-251-0/+2
* Tulip issue #183: log socket events in debug modeVictor Stinner2014-07-121-0/+12
* Move coroutine code in the new module asyncio.coroutinesVictor Stinner2014-06-291-5/+6
* windows_events.py: use more revelant names to overlapped callbacksVictor Stinner2014-02-261-10/+10
* asyncio: remove unused imports and unused variables noticed by pyflakesVictor Stinner2014-02-201-1/+0
* Fix spelling & typosYury Selivanov2014-02-181-1/+1
* Add new event loop exception handling API (closes issue #80).Yury Selivanov2014-02-181-2/+6
* Remove more relics of resolution/granularity.Guido van Rossum2014-02-081-1/+0
* Copy a bunch of fixes by Victor for the Proactor event loop from the CPython ...Guido van Rossum2014-01-311-4/+10
* Fix _make_subprocess_transport(): pass extra value to the constructorVictor Stinner2014-01-291-1/+1
* Code cleanup: remove unused functionAndrew Svetlov2014-01-261-3/+0
* Cleanup properly proactor event loopVictor Stinner2014-01-101-4/+13
* Use WaitForSingleObject() instead of trusting TimerOrWaitFired.Richard Oudkerk2013-11-241-2/+9
* Fix policy refactoring last-minute change for Windows.Guido van Rossum2013-11-041-1/+4
* Refactor SIGCHLD handler, by Anthony Baire. Fixes issue 67.Guido van Rossum2013-11-041-2/+12
* Satisfy (most) pep8 whitespace requirements.Guido van Rossum2013-11-011-0/+16
* Tweak import of _overlapped and add instructions README (mostly for myself :-).Guido van Rossum2013-10-291-5/+1
* Add support for running subprocesses on Windows with the IOCP event loop.Richard Oudkerk2013-10-271-0/+28
* Make the IOCP proactor support "waitable" handles.Richard Oudkerk2013-10-251-0/+40
* MergeGuido van Rossum2013-10-171-3/+3
* Look for _overlapped module in two places.Guido van Rossum2013-10-151-1/+5