- 29 Tem, 2014 2 kayıt (commit)
-
-
Terry Jan Reedy yazdı
-
Terry Jan Reedy yazdı
Make turtledemo start as active on Mac even when run with subprocess. Patch by Ramchandra Apt, Lita Cho, and Ned Daily.
-
- 28 Tem, 2014 10 kayıt (commit)
-
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
support.rmtree() instead of deltree().
-
Victor Stinner yazdı
deltree().
-
Richard Oudkerk yazdı
-
Victor Stinner yazdı
using pythonw.exe instead of python.exe
-
Richard Oudkerk yazdı
are not available. Patch by Arfrever Frehtes Taifersar Arahesis.
-
Victor Stinner yazdı
pythonw.exe instead of python.exe
-
- 27 Tem, 2014 10 kayıt (commit)
-
-
Victor Stinner yazdı
the overlapped 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.
-
Victor Stinner yazdı
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.
-
Berker Peksag yazdı
Patch by Martin Matusiak.
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
Patch by Tal Einat.
-
Larry Hastings yazdı
that we are scanning for the output marker. If we don't find it, we will scan them again, so it sees them twice, and it can get confused (like thinking we're still in a comment).
-
Victor Stinner yazdı
-
Martin v. Löwis yazdı
Patch by Vajrasky Kok.
-
Terry Jan Reedy yazdı
-
Terry Jan Reedy yazdı
-
- 26 Tem, 2014 12 kayıt (commit)
-
-
Terry Jan Reedy yazdı
-
Terry Jan Reedy yazdı
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 yazdı
-
Andrew Svetlov yazdı
-
Antoine Pitrou yazdı
-
Antoine Pitrou yazdı
-
Andrew Svetlov yazdı
-
Andrew Svetlov yazdı
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
-
Victor Stinner yazdı
OverflowError on closed socket. repr(socket.socket) already works fine.
-
Victor Stinner yazdı
on closed socket. repr(socket.socket) already works fine.
-
- 25 Tem, 2014 6 kayıt (commit)
-
-
Victor Stinner yazdı
reference to the overlapped object. IocpProactor._poll() now also ignores false alarms: GetQueuedCompletionStatus() returns the overlapped but it is still pending.
-
Victor Stinner yazdı
overlapped object. IocpProactor._poll() now also ignores false alarms: GetQueuedCompletionStatus() returns the overlapped but it is still pending.
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
Victor Stinner yazdı
* 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.
-
Victor Stinner yazdı
* 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.
-