- 28 Jul, 2014 1 commit
-
-
Victor Stinner authored
pythonw.exe instead of python.exe
-
- 27 Jul, 2014 2 commits
-
-
Victor Stinner authored
in the _cache dictionary, even if we already got the result. We need to keep a reference to the overlapped object, otherwise the memory may be reused and GetQueuedCompletionStatus() may use random bytes and behaves badly. There is still a hack for ConnectNamedPipe(): the overlapped object is not register into _cache if the overlapped object completed directly. Log also an error in debug mode in ProactorIocp._loop() if we get an unexpected event. Add a protection in ProactorIocp.close() to avoid blocking, even if it should not happen. I still don't understand exactly why some the completion of some overlapped objects are not notified.
-
Terry Jan Reedy authored
-
- 26 Jul, 2014 5 commits
-
-
Terry Jan Reedy authored
2009-02-02 51562 (27c589f09a21) merged Mac support revisions into 3.0. 2009-03-04 52014 (dc3d24824b60) merged slightly improved version into 2.7. Change 3.4+ to match the later 2.7 patch. Buttons tested manually.
-
Andrew Svetlov authored
-
Antoine Pitrou authored
-
Andrew Svetlov authored
-
Victor Stinner authored
on closed socket. repr(socket.socket) already works fine.
-
- 25 Jul, 2014 12 commits
-
-
Victor Stinner authored
overlapped object. IocpProactor._poll() now also ignores false alarms: GetQueuedCompletionStatus() returns the overlapped but it is still pending.
-
Raymond Hettinger authored
-
Victor Stinner authored
* Tulip issue #196: IocpProactor._poll() clears the reference to the overlapped operation when the operation is done. It would be better to clear the reference in a new _OverlappedFuture.set_result() method, but it cannot be done yet because of a weird bug. * BaseSelectorEventLoop._write_to_self() now logs errors in debug mode.
-
Zachary Ware authored
Patch by Zachary Turner.
-
Zachary Ware authored
-
Charles-François Natali authored
-
Charles-François Natali authored
-
Victor Stinner authored
-
Victor Stinner authored
* Fix _WaitHandleFuture.cancel(): return the result of the parent cancel() method. * _OverlappedFuture.cancel() now clears its reference to the overlapped object. Make also the _OverlappedFuture.ov attribute private. * Check if _WaitHandleFuture completed before unregistering it in the callback. Add also _WaitHandleFuture._poll() and repr(_WaitHandleFuture). * _WaitHandleFuture now unregisters its wait handler if WaitForSingleObject() raises an exception. * _OverlappedFuture.set_exception() now cancels the overlapped operation.
-
Serhiy Storchaka authored
-
Terry Jan Reedy authored
-
Terry Jan Reedy authored
by removing global 'demo'. Refactor and remove duplicate code.
-
- 24 Jul, 2014 14 commits
-
-
Victor Stinner authored
Improve stability of the proactor event loop, especially operations on overlapped objects: * Tulip issue 195: Don't call UnregisterWait() twice if a _WaitHandleFuture is cancelled twice to fix a crash. * IocpProactor.close(): cancel futures to cancel overlapped operations, instead of cancelling directly overlapped operations. Future objects may not call ov.cancel() if the future was cancelled or if the overlapped was already cancelled. The cancel() method of the future may also catch exceptions. Log also errors on cancellation. * tests: rename "f" to "fut" * Add a __repr__() method to IocpProactor * Add a destructor to IocpProactor which closes it * _OverlappedFuture.cancel() doesn't cancel the overlapped anymore if it is done: if it is already cancelled or completed. Log also an error if the cancellation failed. * Add the address of the overlapped object in repr(_OverlappedFuture) * _OverlappedFuture truncates the source traceback to hide the call to the parent constructor (useless in debug).
-
Victor Stinner authored
does crash on Mac OS X which uses libedit instead of readline.
-
Victor Stinner authored
BlockingIOError exceptions. Initial patch written by Xavier de Gaye. Document also in asyncore documentation that recv() may raise BlockingIOError.
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
terminal to not write the ANSI sequence "\033[1034h" into stdout. This sequence is used on some terminal (ex: TERM=xterm-256color") to enable support of 8 bit characters.
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
Patch written by Saimadhav Heblikar.
-
Andrew Svetlov authored
-
Terry Jan Reedy authored
-
Terry Jan Reedy authored
-
Benjamin Peterson authored
Patch by Martin Matusiak.
-
Terry Jan Reedy authored
-
- 23 Jul, 2014 6 commits
-
-
Terry Jan Reedy authored
-
Zachary Ware authored
and skip test_win32.FunctionCallTestCase.test_SEH when Python was compiled in debug configuration or by a non-MSC compiler.
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
from 6ae34a948cb4.
-
Terry Jan Reedy authored
lines or narrowed for small screens. Issie #19132: Turtledemo buttons no longer disappear when window is shrun. Patch mostly by Lita Cho (21597) using idea from patch by Jan Kanis (18132).
-
Zachary Ware authored
Adds `load_package_tests` function to test.support, uses it in test_asyncio, test_email, test_json, test_tools, test_importlib and all test_importlib sub-packages to implement test discovery.
-