- 09 Apr, 2015 2 commits
-
-
Zachary Ware authored
Builds using prepared sources that had Perl available anyway were broken by the previous fix to this script (oops).
-
Victor Stinner authored
systems, instead of just "1".
-
- 06 Apr, 2015 1 commit
-
-
Steve Dower authored
-
- 09 Apr, 2015 1 commit
-
-
Zachary Ware authored
-
- 08 Apr, 2015 1 commit
-
-
Zachary Ware authored
This change affects the makefiles checked into svn.python.org, which the 3.5 build no longer uses. 3.4 and 2.7 both still use those makefiles, but their build_ssl.py scripts don't require an update; if the script is running the 'fix_makefiles' method it already has Perl available anyway.
-
- 09 Apr, 2015 2 commits
-
-
Victor Stinner authored
poll() is not available. select() doesn't accept negative timeout, the timeout parameter must be NULL to block on select().
-
Victor Stinner authored
Use -1 second by default, not -1 nanosecond.
-
- 08 Apr, 2015 11 commits
-
-
Tim Golden authored
-
Tim Golden authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Berker Peksag authored
Patch by Davin Potts.
-
Berker Peksag authored
Patch by Davin Potts.
-
Berker Peksag authored
-
Berker Peksag authored
-
Berker Peksag authored
-
Berker Peksag authored
-
Zachary Ware authored
-
- 07 Apr, 2015 15 commits
-
-
Gregory P. Smith authored
It is internal only, not a documented API.
-
Gregory P. Smith authored
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 authored
-
Victor Stinner authored
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 authored
ParseResultBytes, and SplitResultBytes to urllib.parse.__all__. Patch by Martin Panter.
-
Benjamin Peterson authored
-
Benjamin Peterson authored
Patch by Hoolean.
-
Donald Stufft authored
-
Donald Stufft authored
-
Victor Stinner authored
-
ftp://gatekeeper.research.compaq.com/ftp://ftp.debian.org/Victor Stinner authored
are down, don't use anymore in test_urllib2net
-
Victor Stinner authored
socket if the FTP connection failed to fix a ResourceWarning.
-
Victor Stinner authored
the FTP connection failed to fix a ResourceWarning.
-
Donald Stufft authored
-
Donald Stufft authored
-
- 06 Apr, 2015 7 commits
-
-
Victor Stinner authored
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 authored
Call internal_select() with a timeout of 0 second, not a timeout of -1 second (blocking)!
-
Victor Stinner authored
each time data is sent successfuly. The socket timeout is now the maximum total duration to send all data.
-
Victor Stinner authored
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 authored
orderable and non-orderable elements no longer depends on iteration order of set or dict.
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-