- 08 Tem, 2011 1 kayıt (commit)
-
-
Éric Araujo yazdı
We now have one function to prepare multipart POST requests, and we use CRLF, as recommended by the HTTP spec (#10150). Initial patch by John Edmonds.
-
- 02 Tem, 2011 1 kayıt (commit)
-
-
Éric Araujo yazdı
-
- 08 Tem, 2011 2 kayıt (commit)
-
-
Victor Stinner yazdı
The Python signal handler for SIGABRT is not called on os.abort() (only if the signal is raised manually or sent by another process). Patch by Kamil Kisiel.
-
Victor Stinner yazdı
The Python signal handler for SIGABRT is not called on os.abort() (only if the signal is raised manually or sent by another process). Patch by Kamil Kisiel.
-
- 07 Tem, 2011 3 kayıt (commit)
-
-
Victor Stinner yazdı
They only ignore the first byte of an invalid byte sequence. For example, b'\xff\n'.decode('gb2312', 'replace') gives '\ufffd\n' instead of '\ufffd'.
-
Victor Stinner yazdı
Fix a compiler warning on Windows 64 bits.
-
Vinay Sajip yazdı
-
- 06 Tem, 2011 5 kayıt (commit)
-
-
Ned Deily yazdı
OS X window manager connection in tk tests, use OS X Application Services API calls instead.
-
Ned Deily yazdı
OS X window manager connection in tk tests, use OS X Application Services API calls instead.
-
Brian Curtin yazdı
-
Brian Curtin yazdı
Patch by Robbie Clemons (robquad), produced at the PyCon 2011 sprints.
- 05 Tem, 2011 15 kayıt (commit)
-
-
Victor Stinner yazdı
negative, instead of an infinite sleep on Windows or raising an IOError on Linux for example, to have the same behaviour on all platforms.
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
support Python scripts using a encoding different than UTF-8 (read the coding cookie of the script).
-
Victor Stinner yazdı
scripts using a encoding different than UTF-8 (read the coding cookie of the script).
-
Victor Stinner yazdı
subprocess.Popen.communicate() now also handles EINTR errors if the process has only one pipe.
-
Victor Stinner yazdı
subprocess.Popen.communicate() now also handles EINTR errors if the process has only one pipe.
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Ned Deily yazdı
tests.
-
Ned Deily yazdı
tests.
-
Ned Deily yazdı
testcase failure in test_ssl.
-
Ned Deily yazdı
testcase failure in test_ssl.
-
- 04 Tem, 2011 13 kayıt (commit)
-
-
Victor Stinner yazdı
When signals are unblocked, pending signal ared delivered in the reverse order of their number (also on Linux, not only on FreeBSD 6). Don't sort signals by their number if signals were not blocked (test_signum).
-
Victor Stinner yazdı
On FreeBSD 6, when signals are unblocked, FreeBSD 6 delivers signals in the reverse order of their number.
-
Victor Stinner yazdı
* Don't create a thread at startup anymore to initialize the pthread library: it changes the behaviour of many functions related to signal handling like sigwait() * Reenable test_sigtimedwait_poll() on FreeBSD 6
-
Senthil Kumaran yazdı
-
Senthil Kumaran yazdı
-
Senthil Kumaran yazdı
Merge from 3.2 . Replace the term members with correct and appropriate terminology. Initial patch by Adam Woodbeck.
-
Senthil Kumaran yazdı
issue10403 - Let's not use members anymore. Use 'attribute' where it denotes attribute and 'methods' where it denotes methods. Context should clarify usage.
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
to run the test in a fresh process with only one thread and to not change signal handling of the parent process.
-
Victor Stinner yazdı
fresh process with only one thread and to not change signal handling of the parent process.
-
Victor Stinner yazdı
Replace PendingDeprecationWarning warnings by DeprecationWarning.
-