summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* 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
| |
* | merge from 3.2 - Fix closes issue12581 - Increase the urllib.parse test ↵Senthil Kumaran2011-07-231-2/+76
|\ \ | |/ | | | | coverage. Patch by Petter Haggholm.
| * Fix closes issue12581 - Increase the urllib.parse test coverage. Patch by ↵Senthil Kumaran2011-07-231-2/+76
| | | | | | | | Petter Haggholm.
* | Merge 3.2 branch.Georg Brandl2011-07-231-1/+1
|\ \ | |/
| * Fix function name: open -> urlopen.Georg Brandl2011-07-231-1/+1
| |
| * Issue #12592: Make Python build on OpenBSD 5 (and future major releases).Charles-François Natali2011-07-223-312/+291
| |
* | fixing whitespace in the previous commitEli Bendersky2011-07-231-10/+9
| |
* | Issue #11049: adding some tests to test.supportEli Bendersky2011-07-232-10/+189
| | | | | | | | Based on original patch by Giampaolo Rodola with contributions from R. David Murray
* | Merge - Issue #12592: Make Python build on OpenBSD 5 (and future majorCharles-François Natali2011-07-223-312/+291
| | | | | | | | releases).
* | merge 3.2Benjamin Peterson2011-07-222-20/+16
|\ \ | |/
| * None is ok for identifiers but not stringsBenjamin Peterson2011-07-222-20/+16
| |
* | merge 3.2 (null)Benjamin Peterson2011-07-220-0/+0
|\ \ | |/
| * hardcode the old svn __version__Benjamin Peterson2011-07-222-7/+5
| |
* | merge 3.2Benjamin Peterson2011-07-224-4/+55
|\ \ | |/
| * type check AST strings and identifiersBenjamin Peterson2011-07-224-6/+57
| | | | | | | | This is related to a21829180423 as well as #12609 and #12610.
* | Merge - Issue #12372: POSIX semaphores are broken on AIX: don't use them.Charles-François Natali2011-07-213-11/+6
|\ \ | |/
| * Issue #12372: POSIX semaphores are broken on AIX: don't use them.Charles-François Natali2011-07-213-11/+6
| |
* | #12601: merge with 3.2.Ezio Melotti2011-07-211-1/+1
|\ \ | |/
| * #12601: fix typo.Ezio Melotti2011-07-211-1/+1
| |
* | #11435: dummy merge with 3.2.Ezio Melotti2011-07-210-0/+0
|\ \ | |/
| * #11435: link to the correct branch.Ezio Melotti2011-07-211-1/+1
| |
* | Issue #12551: Provide a get_channel_binding() method on SSL sockets so asAntoine Pitrou2011-07-206-0/+196
| | | | | | | | | | | | | | | | to get channel binding data for the current SSL session (only the "tls-unique" channel binding is implemented). This allows the implementation of certain authentication mechanisms such as SCRAM-SHA-1-PLUS. Patch by Jacek Konieczny.
* | #665194: support roundtripping RFC2822 date stamps in the email.utils moduleR David Murray2011-07-205-8/+133
| |
* | merge from 3.2 - Fix closes issue12524 - update http.client POST example ↵Senthil Kumaran2011-07-201-4/+6
|\ \ | |/ | | | | with a working example.
| * Fix closes issue12524 - update http.client POST example with a working example.Senthil Kumaran2011-07-201-4/+6
| |
* | Fix test_multiprocessing failure under Windows.Antoine Pitrou2011-07-201-2/+2
| | | | | | | | (followup to dfaa3a149a92)
* | Upstream merge.Barry Warsaw2011-07-190-0/+0
|\ \ | |/
| * Upstream mergeBarry Warsaw2011-07-192-2/+14
| |\
* | \ Upstream merge.Barry Warsaw2011-07-199-2/+1093
|\ \ \
| * \ \ Issue #12587: Correct faulty test file and reference in test_tokenize.Ned Deily2011-07-194-2/+6
| |\ \ \ | | |/ / | | | | | | | | (Patch by Robert Xiao)
| | * | Issue #12587: Correct faulty test file and reference in test_tokenize.Ned Deily2011-07-194-2/+6
| | | | | | | | | | | | | | | | (Patch by Robert Xiao)
| * | | Issue #12571: Add a plat-linux3 directory mirroring the plat-linux2 directory,Antoine Pitrou2011-07-196-0/+1087
| |\ \ \ | | |/ / | | | | | | | | so that "import DLFCN" and other similar imports work on Linux 3.0.
| | * | Issue #12571: Add a plat-linux3 directory mirroring the plat-linux2 directory,Antoine Pitrou2011-07-196-0/+1087
| | | | | | | | | | | | | | | | so that "import DLFCN" and other similar imports work on Linux 3.0.
* | | | - Issue #10309: Define _GNU_SOURCE so that mremap() gets the properBarry Warsaw2011-07-192-2/+11
|\ \ \ \ | |/ / / |/| | / | | |/ | |/| signature. Without this, architectures where sizeof void* != sizeof int are broken. Patch given by Hallvard B Furuseth.
| * | - Issue #10309: Define _GNU_SOURCE so that mremap() gets the properBarry Warsaw2011-07-192-2/+14
| |/ | | | | | | | | signature. Without this, architectures where sizeof void* != sizeof int are broken. Patch given by Hallvard B Furuseth.
* | #7484: simplify quoteaddr: if parseaddr throws an error it is a bug.R David Murray2011-07-191-14/+8
| | | | | | | | | | | | As far as I can tell, the try/except was ancient code, from before the email package rewrite where the philosophy of never throwing parsing errors was adopted.
* | Merge #7484: no more <> around addresses in VRFY or EXPNR David Murray2011-07-193-11/+36
|\ \ | |/
| * #7484: no more <> around addresses in VRFY or EXPNR David Murray2011-07-193-11/+36
| | | | | | | | | | | | | | | | | | The RFC doesn't say that they are allowed; apparently many mailers accept them, but not postfix. Contributions to this patch were made by Felipe Cruz and Catalin Iacob. The changeset also adds additional indirect tests for quoteaddr (null address and IDNA-encoded address).