summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | Merge #14984: On POSIX, enforce permissions when reading default .netrc.R David Murray2013-09-184-6/+61
|\ \ | |/
| * #14984: On POSIX, enforce permissions when reading default .netrc.R David Murray2013-09-184-6/+61
| | | | | | | | | | | | | | | | Initial patch by Bruno Piguet. This is implemented as if a useful .netrc file could exist without passwords, which is possible in the general case; but in fact our netrc implementation does not support it. Fixing that issue will be an enhancement.
* | Null merge of 3.1 into 3.2Tim Peters2013-09-150-0/+0
|\ \ | |/ | | | | Changeset c39f42f46a05 left a dangling head on 3.1.
| * Fix tkinter regression introduced by the security fix in #16248.Georg Brandl2013-09-141-1/+1
| |
* | Add a NEWS entry for b9b521efeba3.Georg Brandl2013-09-141-0/+3
| |
* | Add NEWS entry for c18c18774e24.Georg Brandl2013-09-141-0/+11
| |
* | Fix tkinter regression introduced by the security fix in #16248.Georg Brandl2013-09-141-1/+1
| |
* | Issue #17980: Fix possible abuse of ssl.match_hostname() for denial of ↵Antoine Pitrou2013-05-183-1/+22
| | | | | | | | service using certificates with many wildcards (CVE-2013-2099).
* | Added tag v3.2.5 for changeset cef745775b65Georg Brandl2013-05-121-0/+1
| |
* | Bump to version 3.2.5.v3.2.5Georg Brandl2013-05-126-7/+7
| |
* | Issue #17915: Fix interoperability of xml.sax with file objects returned byGeorg Brandl2013-05-123-0/+39
| | | | | | | | codecs.open().
* | Issue #1159051: Back out a fix for handling corrupted gzip files thatGeorg Brandl2013-05-124-68/+41
| | | | | | | | broke backwards compatibility.
* | Issue #17857: Prevent build failures with pre-3.5.0 versions of sqlite3,Serhiy Storchaka2013-04-284-7/+13
| | | | | | | | such as was shipped with Centos 5 and Mac OS X 10.4.
* | Issue #17843: Remove bz2 test data that triggers antivirus warnings.Georg Brandl2013-05-123-7/+12
| |
* | Issue #15535: Fix pickling of named tuples.Georg Brandl2013-05-123-0/+8
| |
* | Close #17666: Fix reading gzip files with an extra field.Serhiy Storchaka2013-04-083-4/+23
| |
* | news entryGregory P. Smith2013-04-301-0/+4
| |
* | This local change was lost during the fixing of issue17192 to updateGregory P. Smith2013-04-301-0/+5
| | | | | | | | | | | | | | libffi to 3.0.13. (i'm not sure if it is needed anymore but see issue 10309 for details which makes no mention of upstream; this change is already in 3.3 and 3.4 but may need reapplying to 2.7 as done here)
* | * Fix issue 17192 for 3.2 - reapply the issue11729 patch that was undoneGregory P. Smith2013-04-303-33/+58
| | | | | | | | | | in the merge fun from upstream which already had it in 3.0.13. * Add the missing update to libffi.info.
* | Added tag v3.2.4 for changeset 1e10bdeabe3dGeorg Brandl2013-04-061-0/+1
| |
* | Bump to 3.2.4.v3.2.4Georg Brandl2013-04-067-13/+11
| |
* | close search and replace dialog after it is used (closes #17625)Benjamin Peterson2013-04-042-0/+12
| |
* | mergeGeorg Brandl2013-04-021-0/+2
|\ \
| * | Add 3.2.4 UUIDsMartin v. Löwis2013-03-301-0/+2
| | |
* | | Fix XML vulnerability link references.Georg Brandl2013-03-281-2/+2
| | |
* | | merge with last upstream doc changes in 3.2Georg Brandl2013-03-283-13/+18
|\ \ \
| * | | Update suspicious ignore file.Ezio Melotti2013-03-284-12/+11
| | | |
| * | | #17329: document unittest.SkipTest. Initial patch by Zachary Ware.Ezio Melotti2013-03-272-4/+11
| | | |
| * | | Issue 17538: Document XML vulnerabiltiesChristian Heimes2013-03-2610-0/+187
| | | |
* | | | Issue 17538: Document XML vulnerabiltiesChristian Heimes2013-03-2610-0/+187
| |/ / |/| |
* | | Added tag v3.2.4rc1 for changeset b2cb7bc1edb8Georg Brandl2013-03-251-0/+1
| | |
* | | merge with main repo 3.2 branchv3.2.4rc1Georg Brandl2013-03-2510-27/+62
|\ \ \ | |/ /
| * | Issue #17425: Build with openssl 1.0.0k on Windows.Martin v. Loewis2013-03-246-7/+9
| | |
| * | Clean up references to threads in test_queue.Ezio Melotti2013-03-231-1/+4
| | |
| * | Fixes issue #17488: Change the subprocess.Popen bufsize parameter default valueGregory P. Smith2013-03-234-19/+49
| | | | | | | | | | | | | | | | | | from unbuffered (0) to buffering (-1) to match the behavior existing code expects and match the behavior of the subprocess module in Python 2 to avoid introducing hard to track down bugs.
* | | Copyright update to 2013.Georg Brandl2013-03-237-9/+12
| | |
* | | Bump to 3.2.4rc1.Georg Brandl2013-03-236-13/+13
| | |
* | | Fix suspicious markup in the docs.Georg Brandl2013-03-234-5/+10
| | |
* | | Update pydoc topics.Georg Brandl2013-03-231-17/+17
|/ /
* | Issue #17521: Corrected non-enabling of logger following two calls to ↵Vinay Sajip2013-03-233-4/+37
| | | | | | | | fileConfig().
* | Updated Misc/NEWS with #17508.Vinay Sajip2013-03-231-0/+3
| |
* | Clean up references to the no longer existing PyString_ APIs in our docs.Gregory P. Smith2013-03-224-22/+23
| |
* | Issue #17508: Handled out-of-order handler configuration correctly.Vinay Sajip2013-03-222-6/+60
| |
* | - Issue #16754: Fix the incorrect shared library extension on linux. Introducedoko@ubuntu.com2013-03-2113-99/+88
| | | | | | | | | | two makefile macros SHLIB_SUFFIX and EXT_SUFFIX. SO now has the value of SHLIB_SUFFIX again (as in 2.x and 3.1). The SO macro is removed in 3.4.
* | #5712: Preemptively fix some other possible timing issues.R David Murray2013-03-211-3/+3
| |
* | #5713: fix timing issue in smtplib tests.R David Murray2013-03-211-0/+3
| |
* | remove the long obsolete mention of universal newlines mode only beingGregory P. Smith2013-03-212-9/+6
| | | | | | | | available when configured at compile time.
* | #5713: Handle 421 error codes during sendmail by closing the socket.R David Murray2013-03-213-3/+79
| | | | | | | | | | | | | | | | | | This is a partial fix to the issue of servers disconnecting unexpectedly; in this case the 421 says they are disconnecting, so we close the socket and return the 421 in the appropriate error context. Original patch by Mark Sapiro, updated by Kushal Das, with additional tests by me.
* | #17493: re-enable a test on Windows. Patch by Zachary Ware.Ezio Melotti2013-03-201-11/+9
| |
* | Fix usage of argument/parameter and markup.Ezio Melotti2013-03-201-4/+4
| |