summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Issue #12603: Fix pydoc.synopsis() on files with non-negative st_mtime.Charles-François Natali2011-07-272-2/+4
|\
| * Issue #12603: Fix pydoc.synopsis() on files with non-negative st_mtime.Charles-François Natali2011-07-272-2/+4
| |
* | fix doc typo for library/test.rstEli Bendersky2011-07-271-1/+1
| |
* | Issue #11049: added test_support to regrtest.STDTESTS listEli Bendersky2011-07-271-0/+1
| |
* | merge from 3.2 - Fix closes Issue12621 - Fix docstrings of find and rfind ↵Senthil Kumaran2011-07-273-6/+6
|\ \ | |/ | | | | methods of bytes/bytearry/unicodeobject.
| * Fix closes Issue12621 - Fix docstrings of find and rfind methods of ↵Senthil Kumaran2011-07-273-6/+6
| | | | | | | | bytes/bytearry/unicodeobject.
* | Issue #12607: Merge with 3.2.Ross Lagerwall2011-07-273-0/+68
|\ \ | |/
| * Issue #12607: In subprocess, fix issue where if stdin, stdout or stderr isRoss Lagerwall2011-07-274-0/+76
| | | | | | | | given as a low fd, it gets overwritten.
* | merge from 3.2 - Correcting issue 12576 fix, which resulted in buildbot ↵Senthil Kumaran2011-07-271-6/+3
|\ \ | |/ | | | | failures.
| * Correcting issue 12576 fix, which resulted in buildbot failures.Senthil Kumaran2011-07-271-6/+3
| |
* | Issue #12590: IDLE editor window now always displays the first lineNed Deily2011-07-272-1/+4
|\ \ | |/ | | | | when opening a long file. With Tk 8.5, the first line was hidden.
| * Issue #12590: IDLE editor window now always displays the first lineNed Deily2011-07-272-1/+4
| | | | | | | | when opening a long file. With Tk 8.5, the first line was hidden.
* | merge from 3.2 - Fix closes Issue12576 - fix urlopen behavior on sites which ↵Senthil Kumaran2011-07-273-3/+25
|\ \ | |/ | | | | do not send (or obsfuscates) Connection: Close header.
| * Fix closes Issue12576 - fix urlopen behavior on sites which do not send (or ↵Senthil Kumaran2011-07-273-3/+25
| | | | | | | | obsfuscates) Connection: Close header.
* | Actually port ecfe9bf0117b to defaultAntoine Pitrou2011-07-262-287/+310
| | | | | | | | (I had the wrong impression that the problem didn't exist here)
* | Null mergeAntoine Pitrou2011-07-260-0/+0
|\ \ | |/
| * When testing for an hg repo, use a file that always exists, even with the ↵Antoine Pitrou2011-07-262-289/+312
| | | | | | | | "shared" extension
* | Null mergeAntoine Pitrou2011-07-260-0/+0
|\ \ | |/
| * Backport 0398f07d4827 (fix for weird buildbot failures)Antoine Pitrou2011-07-262-4/+4
| |
* | Try to fix weird buildbot failuresAntoine Pitrou2011-07-262-4/+4
| |
* | Issue #8746: Use tempfile module to get tempdir and randomize theNed Deily2011-07-261-1/+3
|\ \ | |/ | | | | link file name.
| * Issue #8746: Use tempfile module to get tempdir and randomize theNed Deily2011-07-261-1/+3
| | | | | | | | link file name.
* | Issue #10639: reindent.py tool now accepts a --newline option to specify the ↵Jason R. Coombs2011-07-262-4/+13
| | | | | | | | newline to be used in the output of converted files.
* | Merge with 3.2 Issue #10639: reindent.py should not convert newlines.Jason R. Coombs2011-07-262-4/+16
|\ \ | |/ | | | | reindent.py now will use the newline detected in the original file and will report an error if mixed newlines are encountered.
| * Fixes #10639: reindent.py should not convert newlinesJason R. Coombs2011-07-262-3/+18
| | | | | | | | reindent.py now will use the newline detected in the original file and will report an error if mixed newlines are encountered.
* | Add debug output for failing buildbotAntoine Pitrou2011-07-261-0/+2
| |
* | #12547: Fix example in nntplib doc. Patch by July Tikhonov.Ezio Melotti2011-07-262-3/+3
| |
* | Fixes #12637: Merged fix from 3.2 and added test.Vinay Sajip2011-07-252-1/+4
|\ \ | |/
| * Fixes #12637: Last resort messages now correctly handled. Thanks to Xavier ↵Vinay Sajip2011-07-251-2/+3
| | | | | | | | de Gaye for the patch."
* | Issue #11784: Improve multiprocessing.Process.join() documentation. Patch byCharles-François Natali2011-07-252-4/+4
| | | | | | | | Patrick Sabin.
* | Issue #12102: Merge with 3.2.Ross Lagerwall2011-07-253-0/+10
|\ \ | |/
| * Issue #12102: Document that buffered files must be flushed before being usedRoss Lagerwall2011-07-253-0/+10
| | | | | | | | with mmap. Patch by Steffen Daode Nurpmeso.
* | Issue #12560: Build libpython.so on OpenBSD. Patch by Stefan Sperling.Charles-François Natali2011-07-244-2/+5
|\ \ | |/
| * Issue #12560: Build libpython.so on OpenBSD. Patch by Stefan Sperling.Charles-François Natali2011-07-244-2/+5
| |
* | Add a test for issue #1813: getlocale() failing under a Turkish localeAntoine Pitrou2011-07-244-1/+30
|\ \ | |/ | | | | (not a problem under 3.x)
| * Add a test for issue #1813: getlocale() failing under a Turkish localeAntoine Pitrou2011-07-241-0/+13
| | | | | | | | (not a problem under 3.x)
| * Issue #1813: Fix codec lookup under Turkish locales.Antoine Pitrou2011-07-243-1/+17
| |
* | Issue #12624: It is now possible to fail after the first failure whenAntoine Pitrou2011-07-233-8/+24
|\ \ | |/ | | | | | | | | running in verbose mode (`-v` or `-W`), by using the `--failfast` (or `-G`) option to regrtest. This is useful with long test suites such as test_io or test_subprocess.
| * Issue #12624: It is now possible to fail after the first failure whenAntoine Pitrou2011-07-233-8/+24
| | | | | | | | | | | | running in verbose mode (`-v` or `-W`), by using the `--failfast` (or `-G`) option to regrtest. This is useful with long test suites such as test_io or test_subprocess.
* | Issue #12591: Improve support of "universal newlines" in the subprocessAntoine Pitrou2011-07-233-17/+52
|\ \ | |/ | | | | module: the piped streams can now be properly read from or written to.
| * Issue #12591: Improve support of "universal newlines" in the subprocessAntoine Pitrou2011-07-233-17/+52
| | | | | | | | | | | | | | module: the piped streams can now be properly read from or written to. (this was broken due to the 2.x to 3.x transition; communicate() support is still sketchy)
* | Followup to c3b47cdea0d1: document the *write_through* argument to ↵Antoine Pitrou2011-07-231-1/+9
| | | | | | | | TextIOWrapper.
* | Issue #12591: Allow io.TextIOWrapper to work with raw IO objects (withoutAntoine Pitrou2011-07-234-8/+45
|\ \ | |/ | | | | | | a read1() method), and add a *write_through* parameter to mandate unbuffered writes.
| * Issue #12591: Allow io.TextIOWrapper to work with raw IO objects (withoutAntoine Pitrou2011-07-234-8/+45
| | | | | | | | | | a read1() method), and add an undocumented *write_through* parameter to mandate unbuffered writes.
* | Issue 12620: Make pendingbusy flag static to Py_MakePendingCalls().Charles-François Natali2011-07-231-4/+4
| |
* | Add Misc/NEWS entry for d68765bd6490.Nadeem Vawda2011-07-231-0/+2
|\ \ | |/
| * Add Misc/NEWS entry for c741ba9e37ef.Nadeem Vawda2011-07-231-0/+2
| |
* | Merge: #10883: Fix socket leaks in urllib.request.Nadeem Vawda2011-07-234-29/+59
|\ \ | |/ | | | | | | | | | | | | * ftpwrapper now uses reference counting to ensure that the underlying socket is closed when the ftpwrapper object is no longer in use * ftplib.FTP.ntransfercmd() now closes the socket if an error occurs Initial patch by Victor Stinner.
| * Issue #10883: Fix socket leaks in urllib.request.Nadeem Vawda2011-07-234-29/+59
| | | | | | | | | | | | | | | | * ftpwrapper now uses reference counting to ensure that the underlying socket is closed when the ftpwrapper object is no longer in use * ftplib.FTP.ntransfercmd() now closes the socket if an error occurs Initial patch by Victor Stinner.
* | Issue #11049: skip a test that fails on some buildbotsEli Bendersky2011-07-231-0/+1
| |