summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* null mergeBarry Warsaw2013-09-300-0/+0
|\
| * Fix typo in NEWS file.Barry Warsaw2013-09-301-1/+1
| |
* | Issue #12641: Avoid passing "-mno-cygwin" to the mingw32 compiler, except ↵Antoine Pitrou2013-09-303-7/+25
| | | | | | | | | | | | when necessary. Patch by Oscar Benjamin.
* | merge headsBarry Warsaw2013-09-301-25/+30
|\ \
| * | Add a "skull and crossbones" to Py_AddPendingCall.Antoine Pitrou2013-09-301-25/+30
| | |
* | | null mergeBarry Warsaw2013-09-300-0/+0
|\ \ \ | |/ / |/| / | |/
| * - Issue #16041: CVE-2013-1752: poplib: Limit maximum line lengths to 2048 toBarry Warsaw2013-09-303-7/+95
| | | | | | | | | | prevent readline() calls from consuming too much member. Patch by Jyrki Pulliainen.
* | Add fake buildbottouch target.Martin v. Löwis2013-09-301-0/+3
| |
* | Code improvement. Review comment by Eric V. SmithSenthil Kumaran2013-09-301-1/+1
| |
* | null mergeBarry Warsaw2013-09-290-0/+0
|\ \
| * \ null mergeBarry Warsaw2013-09-290-0/+0
| |\ \ | | |/
| | * - Issue #16037: HTTPMessage.readheaders() raises an HTTPException when moreBarry Warsaw2013-09-293-0/+17
| | | | | | | | | | | | than 100 headers are read. Adapted from patch by Jyrki Pulliainen.
* | | Properly initialize all fields of a SSL object after allocation.Antoine Pitrou2013-09-292-0/+3
|/ /
* | Issue #19112: avoid using function defined in method.Richard Oudkerk2013-09-291-8/+9
| |
* | remove duplicate method (closes #19127)Benjamin Peterson2013-09-291-3/+0
| |
* | condense two tests with the same name (closes #19114)Benjamin Peterson2013-09-291-13/+12
| |
* | move helper function into its test method (closes #19112)Benjamin Peterson2013-09-291-7/+6
| |
* | Issue #4366: Fix building extensions on all platforms when --enable-shared ↵Antoine Pitrou2013-09-282-5/+6
| | | | | | | | is used.
* | fix duplicate test names (closes #19115)Benjamin Peterson2013-09-281-5/+5
| | | | | | | | Patch by Xavier de Gaye.
* | Issue #18950: Fix miscellaneous bugs in the sunau module.Serhiy Storchaka2013-09-282-5/+26
| | | | | | | | | | | | | | Au_read.readframes() now updates current file position and reads correct number of frames from multichannel stream. Au_write.writeframesraw() now correctly updates current file position. Au_read and Au_write now correctly work with file object if start file position is not a zero.
* | null mergeBarry Warsaw2013-09-250-0/+0
|\ \ | |/
| * - Issue #16038: CVE-2013-1752: ftplib: Limit amount of data read byBarry Warsaw2013-09-253-4/+37
| | | | | | | | | | | | | | limiting the call to readline(). Original patch by Michał Jastrzębski and Giampaolo Rodola. with test fixes by Serhiy Storchaka.
* | null mergeBarry Warsaw2013-09-220-0/+0
|\ \ | |/
| * - Issue #16039: CVE-2013-1752: Change use of readline in imaplib module toBarry Warsaw2013-09-223-1/+26
| | | | | | | | limit line length. Patch by Emil Lind.
* | Closes #19043: remove detailed listing of versions from license filesGeorg Brandl2013-09-222-75/+2
| | | | | | | | | | | | Since all versions since 2.2 are under the same licensing terms, this saves the release manager from touching the two files for every new minor release.
* | Closes #19061: make shelve security warning consistent between 2.x and 3.x.Georg Brandl2013-09-221-3/+5
| |
* | This check can still fail on RHEL6Nick Coghlan2013-09-221-3/+3
| |
* | Issue #18050: Fixed an incompatibility of the re module with Python 2.7.3Serhiy Storchaka2013-09-204-3/+8
| | | | | | | | and older binaries.
* | Merge #14984: only import pwd on POSIX.R David Murray2013-09-181-1/+3
|\ \ | |/
| * #14984: only import pwd on POSIX.R David Murray2013-09-181-1/+3
| |
* | #19037: adjust file times *before* moving maildir files into place.R David Murray2013-09-182-5/+17
| | | | | | | | | | This avoids race conditions when other programs are monitoring the maildir directory. Patch by janzert.
* | Merge: Add versionchanged for #14984, remove extra blank from string.R David Murray2013-09-182-1/+3
|\ \ | |/
| * Add versionchanged for #14984, remove extra blank from string.R David Murray2013-09-182-1/+3
| |
* | Remove the use of non-existing re.ASCII.Serhiy Storchaka2013-09-173-3/+3
| | | | | | | | (fixes a regression in 3d46ef0c62c5, issue #18873)
* | Issue #18873: IDLE, 2to3, and the findnocoding.py script now detect PythonSerhiy Storchaka2013-09-166-14/+26
| | | | | | | | source code encoding only in comment lines.
* | Merge #14984: On POSIX, enforce permissions when reading default .netrc.R David Murray2013-09-164-6/+59
|\ \ | |/
| * #14984: On POSIX, enforce permissions when reading default .netrc.R David Murray2013-09-164-2/+56
| | | | | | | | | | | | | | | | 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.
* | Close #18945: Add tests for tempfile name collision handling.Eli Bendersky2013-09-151-22/+65
| | | | | | | | Patch by Vlad Shcherbina
* | Null merge with 2.6Andrew Kuchling2013-09-150-0/+0
|\ \ | |/
| * #16042: CVE-2013-1752: Limit amount of data read by limiting the call to ↵Andrew Kuchling2013-09-153-5/+42
| | | | | | | | | | | | | | | | | | | | readline(). The SSLFakeFile.readline() method needs to support limiting readline() as well. It's not a full emulation of readline()'s signature, but this class is only used by smtplib's code, so it doesn't have to be. Modified version of original patch by Christian Heimes.
* | Issue #19018: The heapq.merge() function no longer suppresses IndexErrorRaymond Hettinger2013-09-154-5/+24
| |
* | #18981: fix a typo in a comment (noticed by Anoop Thomas Mathew).Ezio Melotti2013-09-131-1/+1
| |
* | Fix markup in email.parser docs.Ezio Melotti2013-09-131-2/+2
| |
* | #18951: use consistent names in unittest docs.Ezio Melotti2013-09-131-4/+4
| |
* | Fix SimpleHTTPServer's request handling case on trailing '/'.Senthil Kumaran2013-09-133-0/+10
| | | | | | | | Patch contributed by Vajrasky Kok. Addresses Issue #17324
* | Issue #18784: The uuid module no more attempts to load libc via ctypes.CDLL,Serhiy Storchaka2013-09-133-0/+7
| | | | | | | | | | if all necessary functions are already found in libuuid. Patch by Evgeny Sologubov.
* | Automated merge with file:///Users/skumaran/python/cpythonSenthil Kumaran2013-09-121-0/+2
|\ \
| * | Improve the docstring of random.shuffle. Inform users not to provide int arg.Senthil Kumaran2013-09-121-0/+2
| | | | | | | | | | | | Addresses issue #14927
* | | Issue #18988: The "Tab" key now works when a word is already autocompleted.Serhiy Storchaka2013-09-113-7/+7
|/ /
* | Clarify mmap.close method behavior. Addresses issue #18815Senthil Kumaran2013-09-101-2/+3
| | | | | | | | Patch contributed by Anoop Thomas Mathew.