- 09 Nis, 2015 2 kayıt (commit)
-
-
Victor Stinner yazdı
poll() is not available. select() doesn't accept negative timeout, the timeout parameter must be NULL to block on select().
-
Victor Stinner yazdı
Use -1 second by default, not -1 nanosecond.
-
- 08 Nis, 2015 10 kayıt (commit)
-
-
Tim Golden yazdı
-
Tim Golden yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Berker Peksag yazdı
Patch by Davin Potts.
-
Berker Peksag yazdı
Patch by Davin Potts.
-
Berker Peksag yazdı
-
Berker Peksag yazdı
-
Berker Peksag yazdı
-
Berker Peksag yazdı
-
- 07 Nis, 2015 15 kayıt (commit)
-
-
Gregory P. Smith yazdı
It is internal only, not a documented API.
-
Gregory P. Smith yazdı
SubprocessError and TimeoutError in its list of exported names for the users wild enough to use "from subprocess import *". MAXFD, mswindows and list2cmdline should be dealt with (renamed or moved) in separate commits. Committed at 35,000ft. Thanks chromebook free gogo wifi passes!
-
Victor Stinner yazdı
-
Victor Stinner yazdı
again if the first call to connect() raises an InterruptedError. When the C function connect() fails with EINTR, the connection runs in background. We have to wait until the socket becomes writable to be notified when the connection succeed or fails.
-
Serhiy Storchaka yazdı
ParseResultBytes, and SplitResultBytes to urllib.parse.__all__. Patch by Martin Panter.
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
Patch by Hoolean.
-
Donald Stufft yazdı
-
Donald Stufft yazdı
-
Victor Stinner yazdı
-
ftp://gatekeeper.research.compaq.com/ftp://ftp.debian.org/Victor Stinner yazdı
are down, don't use anymore in test_urllib2net
-
Victor Stinner yazdı
socket if the FTP connection failed to fix a ResourceWarning.
-
Victor Stinner yazdı
the FTP connection failed to fix a ResourceWarning.
-
Donald Stufft yazdı
-
Donald Stufft yazdı
-
- 06 Nis, 2015 12 kayıt (commit)
-
-
Victor Stinner yazdı
time bytes are received or sent. The socket timeout is now the maximum total duration of the method. This change fixes a denial of service if the application is regulary interrupted by a signal and the signal handler does not raise an exception.
-
Victor Stinner yazdı
Call internal_select() with a timeout of 0 second, not a timeout of -1 second (blocking)!
-
Victor Stinner yazdı
each time data is sent successfuly. The socket timeout is now the maximum total duration to send all data.
-
Victor Stinner yazdı
Use _PyTime_FromSeconds() to initialize the default socket timeout to -1 second, instead of -1 nanosecond which causes rounding issues in internal_select().
-
Serhiy Storchaka yazdı
orderable and non-orderable elements no longer depends on iteration order of set or dict.
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Tim Golden yazdı
-
Tim Golden yazdı
-
- 05 Nis, 2015 1 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.)
-