- 06 Nis, 2015 3 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
Tim Golden yazdı
-
Tim Golden yazdı
-
- 05 Nis, 2015 4 kayıt (commit)
-
-
R David Murray yazdı
This changeset does two things: introduces a new RemoteDisconnected exception (that subclasses ConnectionResetError and BadStatusLine) so that a remote server disconnection can be detected by client code (and provides a better error message for debugging purposes), and ensures that the client socket is closed if a ConnectionError happens, so that the automatic re-connection code can work if the application handles the error and continues on. Tests are added that confirm that a connection is re-used or not re-used as appropriate to the various combinations of protocol version and headers. Patch by Martin Panter, reviewed by Demian Brecht. (Tweaked only slightly by me.)
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Serhiy Storchaka yazdı
-
- 04 Nis, 2015 16 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
Benjamin Peterson yazdı
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
array_array_frombytes() is used in other functions, but it's signature was changed. Closes issue #23866.
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
returns bool. tkinter.BooleanVar now validates input values (accepted bool, int, str, and Tcl_Obj). tkinter.BooleanVar.get() now always returns bool.
-
Serhiy Storchaka yazdı
returns bool. tkinter.BooleanVar now validates input values (accepted bool, int, str, and Tcl_Obj). tkinter.BooleanVar.get() now always returns bool.
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
Patch by Makoto Kato.
-
Serhiy Storchaka yazdı
Patch by Makoto Kato.
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
- 03 Nis, 2015 14 kayıt (commit)
-
-
Serhiy Storchaka yazdı
PyArg_Parse instead of PyArg_ParseTuple if possible.
-
Serhiy Storchaka yazdı
-
Larry Hastings yazdı
(empty) definition of the methoddef macro: it's only generated once, even if Argument Clinic processes the same symbol multiple times, and it's emitted at the end of all processing rather than immediately after the first use.
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
the wait is cancelled, the future *fut* is now also cancelled.
-
Serhiy Storchaka yazdı
in Parser/pgen.c.
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
Victor Stinner yazdı
@unittest.skipUnless(ssl, '...') doesn't work because the class body uses the nntplib.NNTP_SSL attribute which doesn't exist.
-
- 02 Nis, 2015 2 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
Victor Stinner yazdı
* Rename check_socket_and_wait_for_timeout() to PySSL_select() * PySSL_select() is now clearly splitted betwen poll() and select() * Add empty lines for readability
-
- 03 Nis, 2015 1 kayıt (commit)
-
-
Victor Stinner yazdı
* Use the new _PyTime_FromSeconds() function to set the timeout to -1 second for socket.settimeout(None). It avoids a special case in internal_select() because of a rounding issue: -1 nanosecond is rounded to 0 millisecond which means non-blocking, instead of blocking. * Check if the interval the negative in sock_call_ex() instead of doing the check in internal_select(). sock_call_ex() remembers if the socket has a timeout or not, which avoids a race condition if the timeout is modified in a different thread.
-