- 02 Nis, 2015 23 kayıt (commit)
-
-
Serhiy Storchaka yazdı
arbitrary precision integers added in Tcl 8.5.
-
Serhiy Storchaka yazdı
arbitrary precision integers added in Tcl 8.5.
-
Victor Stinner yazdı
store the result of sendto() instead of the C int type. (The bug was already fixed in the default branch, but differently.)
-
Victor Stinner yazdı
result of sendto() instead of the C int type.
-
Victor Stinner yazdı
-
Victor Stinner yazdı
See the PEP 475 for the rationale.
-
Victor Stinner yazdı
-
Victor Stinner yazdı
sock_call_ex() gets the socket error code when the socket function fails. sock_connect_impl() didn't set the error correctly.
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
instead of raising InterruptedError if the connection is interrupted by signals, signal handlers don't raise an exception and the socket is blocking or has a timeout. socket.socket.connect() still raise InterruptedError for non-blocking sockets.
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
Patch by Martin Panter.
-
Serhiy Storchaka yazdı
Patch by Martin Panter.
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
Patch by Cédric Krier.
-
Victor Stinner yazdı
-
- 01 Nis, 2015 17 kayıt (commit)
-
-
Victor Stinner yazdı
sock_send_impl()
-
Victor Stinner yazdı
The BEGIN_SELECT_LOOP and END_SELECT_LOOP macros of socketmodule.c don't handle EINTR. Functions using these macros use an inner loop to handle EINTR, but they don't recompute the timeout. This changes replaces the two macros with a new sock_call() function which takes a function as a parameter. sock_call() recomputes the timeout, handle false positive and handle EINTR.
-
Victor Stinner yazdı
to its signal handlers. Use also _Py_write_noraise() instead of write() to retry write() if it is interrupted by a signal (fail with EINTR). faulthandler.dump_traceback() also calls PyErr_CheckSignals() to call the Python signal handler if a signal was received.
-
Victor Stinner yazdı
and _Py_DumpTracebackThreads(). Document also these functions to explain that the caller is responsible to call PyErr_CheckSignals().
-
Victor Stinner yazdı
_posixsubprocess
-
Victor Stinner yazdı
signalmodule.c
-
Victor Stinner yazdı
-
Victor Stinner yazdı
Helper to write() which retries write() if it is interrupted by a signal (fails with EINTR).
-
Benjamin Peterson yazdı
-
Victor Stinner yazdı
_PyTime_AsMicroseconds() rounding. Add also unit tests.
-
Benjamin Peterson yazdı
-
Raymond Hettinger yazdı
-
Victor Stinner yazdı
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
MemoryError.
-
Serhiy Storchaka yazdı
MemoryError.
-