- 27 Ock, 2015 5 kayıt (commit)
-
-
Raymond Hettinger yazdı
Remove unneeded dummy test from the set search loop (when the hashes match we know the key is not a dummy).
-
Raymond Hettinger yazdı
Instead of masking and shifting every loopup, move the wrap-around test outside of the inner-loop.
-
Berker Peksag yazdı
-
Berker Peksag yazdı
Patch by Mayank Tripathi.
-
Berker Peksag yazdı
Patch by Mayank Tripathi.
-
- 26 Ock, 2015 35 kayıt (commit)
-
-
Victor Stinner yazdı
There was a bug which was fixed. The unit test was also wrong.
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
If ReadFile() fails with ERROR_BROKEN_PIPE, the operation is not pending: don't register the overlapped. I don't know if WSARecv() can fail with ERROR_BROKEN_PIPE. Since Overlapped.WSARecv() already handled ERROR_BROKEN_PIPE, let me guess that it has the same behaviour than ReadFile().
-
Victor Stinner yazdı
If UnregisterWaitEx() fais with ERROR_IO_PENDING, it doesn't mean that the wait is unregistered yet. We still have to wait until the wait is cancelled.
-
Victor Stinner yazdı
Explicitly cast the long to char.
-
Victor Stinner yazdı
PyUnicode_EncodeCodePage() now raise an exception if the object is not an Unicode object. For PyUnicode_EncodeFSDefault(), it was already the case on platforms other than Windows. Patch written by Campbell Barton.
-
Benjamin Peterson yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
Use a coroutine with asyncio.sleep() instead of call_later() to ensure that the schedule call is cancelled. Add also a unit test cancelling connect_pipe().
-
Victor Stinner yazdı
-
Victor Stinner yazdı
If a client connected before the server was closed: drop the client (close the pipe) and exit.
-
Serhiy Storchaka yazdı
non-seekable streams.
-
Serhiy Storchaka yazdı
threadsafe now.
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
a function or a loop (e.g. "return" or "break").
-
Serhiy Storchaka yazdı
a function or a loop (e.g. "return" or "break").
-
Victor Stinner yazdı
-
Victor Stinner yazdı
In debug mode, BaseEventLoop._run_once() now sets the BaseEventLoop._current_handle attribute to the handle currently executed. In release mode or when no handle is executed, the attribute is None. BaseEventLoop.default_exception_handler() displays the traceback of the current handle if available.
-
Victor Stinner yazdı
The special case for connect_pipe() is not more needed. connect_pipe() doesn't use overlapped operations anymore.
-
Victor Stinner yazdı
Fix create_datagram_endpoint(), connect_read_pipe() and connect_write_pipe(): close the transport if the task is cancelled or on error.
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
directory containing a backslash.
-
Serhiy Storchaka yazdı
directory containing a backslash.
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-