Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #19545: Avoid chained exceptions while passing stray % to | Serhiy Storchaka | 2013-11-24 | 1 | -0/+3 |
| | | | | time.strptime(). Initial patch by Claudiu Popa. | ||||
* | Update Itamar's name | Andrew Kuchling | 2013-11-23 | 1 | -1/+1 |
| | |||||
* | Issue #18326: Clarify that list.sort's arguments are keyword-only. | Zachary Ware | 2013-11-22 | 1 | -0/+7 |
| | | | | | Also, attempt to reduce confusion in the glossary by not saying there are different "types" of arguments and parameters. | ||||
* | Issue #19633: Fixed writing not compressed 16- and 32-bit wave files on | Serhiy Storchaka | 2013-11-21 | 1 | -0/+3 |
| | | | | | | | big-endian platforms. Temporary forbidden test_unseekable_incompleted_write fornot compressed 16- and 32-bit wave file on big-endian platforms. | ||||
* | Add workaround for VS 2010 nmake clean issue. VS 2010 doesn't set up PATH ↵ | Christian Heimes | 2013-11-19 | 1 | -0/+3 |
| | | | | for nmake.exe correctly. | ||||
* | #19449: Handle non-string keys when generating 'fieldnames' error. | R David Murray | 2013-11-19 | 1 | -0/+3 |
| | | | | | | | csv was handling non-string keys fine except for the error message generated when a non-string key was not in 'fieldnames'. Fix by Tomas Grahn, full patch-with-test by Vajrasky Kok (tweaked slightly). | ||||
* | Issue #19596: Set untestable tests in test_importlib to None | Zachary Ware | 2013-11-19 | 1 | -0/+3 |
| | | | | to avoid reporting success on empty tests. | ||||
* | Fix test.support.bind_port() to not cause an error when Python was compiled | Gregory P. Smith | 2013-11-17 | 1 | -0/+4 |
| | | | | | on a system with SO_REUSEPORT defined in the headers but run on a system with an OS kernel that does not support that reasonably new socket option. | ||||
* | Fix compilation error under gcc of the ctypes module bundled libffi for arm. | Gregory P. Smith | 2013-11-17 | 1 | -0/+2 |
| | | | | | A variable was declared below the top of a block and one function was using a K&R C style function declaration! | ||||
* | merge with 3.3.3 release clone | Georg Brandl | 2013-11-17 | 2 | -6/+34 |
|\ | |||||
| * | Bump to 3.3.3 final.v3.3.3 | Georg Brandl | 2013-11-17 | 2 | -1/+9 |
| | | |||||
| * | Bump to 3.3.3rc2.v3.3.3rc2 | Georg Brandl | 2013-11-11 | 2 | -4/+7 |
| | | |||||
| * | Transplant of rev 544b654d000c: directory traversal attack in ↵ | Georg Brandl | 2013-11-11 | 1 | -0/+5 |
| | | | | | | | | CGIHttpRequestHandler. | ||||
| * | Issue #15663: Revert OS X installer built-in Tcl/Tk support for 3.3.3. | Ned Deily | 2013-11-05 | 1 | -0/+8 |
| | | | | | | | | | | | | | | Some third-party projects, such as matplotlib and PIL/Pillow, depended on being able to build with Tcl and Tk frameworks in /Library/Frameworks. They were unable to build with the built-in Tcl/Tk and/or execute correctly. | ||||
| * | Add news entry for 3.3.3 final. | Georg Brandl | 2013-10-28 | 1 | -2/+11 |
| | | |||||
* | | Issue #19523: Closed FileHandler leak which occurred when delay was set. | Vinay Sajip | 2013-11-15 | 1 | -0/+2 |
| | | |||||
* | | Issue #13674 Updated NEWS | Tim Golden | 2013-11-12 | 1 | -0/+3 |
| | | |||||
* | | Issue #19440: Clean up test_capi | Zachary Ware | 2013-11-12 | 1 | -0/+4 |
| | | |||||
* | | Correct a merge error in Misc/NEWS | Zachary Ware | 2013-11-12 | 1 | -1/+1 |
| | | |||||
* | | Issue #19544 and Issue #6286: Restore use of urllib over http allowing use ↵ | Jason R. Coombs | 2013-11-10 | 1 | -0/+4 |
| | | | | | | | | of http_proxy for Distutils upload command, a feature accidentally lost in the rollback of distutils2. | ||||
* | | Issue 19544 and Issue #7457: Restore the read_pkg_file method to ↵ | Jason R. Coombs | 2013-11-10 | 1 | -0/+4 |
| | | | | | | | | distutils.dist.DistributionMetadata accidentally removed in the undo of distutils2. | ||||
* | | Issue #1575020: Fixed support of 24-bit wave files on big-endian platforms. | Serhiy Storchaka | 2013-11-09 | 1 | -0/+2 |
| | | |||||
* | | Valgrind: suppress false positive in _PyOS_GetOpt (getopt.c:84) (Invalid read | Stefan Krah | 2013-11-08 | 1 | -0/+9 |
| | | | | | | | | of size 8: wcscmp (wcscmp.S:464)) | ||||
* | | #19480: HTMLParser now accepts all valid start-tag names as defined by the ↵ | Ezio Melotti | 2013-11-07 | 1 | -0/+3 |
| | | | | | | | | HTML5 standard. | ||||
* | | Issue #15663: Revert OS X installer built-in Tcl/Tk support for 3.3.3. | Ned Deily | 2013-11-05 | 1 | -0/+8 |
| | | | | | | | | | | | | | | Some third-party projects, such as matplotlib and PIL/Pillow, depended on being able to build with Tcl and Tk frameworks in /Library/Frameworks. They were unable to build with the built-in Tcl/Tk and/or execute correctly. | ||||
* | | Issue #18702: All skipped tests now reported as skipped. | Serhiy Storchaka | 2013-11-03 | 1 | -0/+2 |
| | | |||||
* | | Issue #10197: merge heads | Tim Golden | 2013-11-03 | 1 | -0/+3 |
|\ \ | |||||
| * | | Issue #10197 Rework subprocess.get[status]output to use subprocess ↵ | Tim Golden | 2013-11-03 | 1 | -0/+3 |
| | | | | | | | | | | | | functionality and thus to work on Windows. Patch by Nick Coghlan. | ||||
* | | | Issue #6157: Fixed tkinter.Text.debug(). Original patch by Guilherme Polo. | Serhiy Storchaka | 2013-11-03 | 1 | -0/+2 |
| | | | |||||
* | | | Issue #6160: The bbox() method of tkinter.Spinbox now returns a tuple of | Serhiy Storchaka | 2013-11-03 | 1 | -0/+3 |
|/ / | | | | | | | integers instead of a string. Based on patch by Guilherme Polo. | ||||
* | | Merge with 3.2 for Issue #19286. | Jason R. Coombs | 2013-11-02 | 1 | -0/+3 |
|\ \ | |||||
| * | | Update NEWS for 265d369ad3b9. | Jason R. Coombs | 2013-11-02 | 1 | -0/+3 |
| | | | |||||
* | | | Issue #19085: Added basic tests for all tkinter widget options. | Serhiy Storchaka | 2013-11-02 | 1 | -0/+5 |
| | | | |||||
* | | | merge 3.2 (#19435) | Benjamin Peterson | 2013-10-30 | 1 | -0/+1 |
|\ \ \ | |/ / | |||||
| * | | merge 3.1 (#19435) | Benjamin Peterson | 2013-10-30 | 1 | -0/+2 |
| |\ \ | |||||
| | * | | use the collapsed path in the run_cgi method (closes #19435) | Benjamin Peterson | 2013-10-30 | 1 | -0/+2 |
| | | | | |||||
* | | | | #19395: Raise exception when pickling a (BZ2|LZMA)(Compressor|Decompressor). | Nadeem Vawda | 2013-10-28 | 1 | -0/+4 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | The underlying C libraries provide no mechanism for serializing compressor and decompressor objects, so actually pickling these classes is impractical. Previously, these objects would be pickled without error, but attempting to use a deserialized instance would segfault the interpreter. | ||||
* | | | | Add NEWS header for 3.3.4. | Georg Brandl | 2013-10-28 | 1 | -2/+13 |
| |_|/ |/| | | |||||
* | | | Bump to 3.3.3rc1. | Georg Brandl | 2013-10-27 | 1 | -1/+1 |
| | | | |||||
* | | | Issue #19227: Try to fix deadlocks caused by re-seeding then OpenSSL | Georg Brandl | 2013-10-27 | 1 | -0/+3 |
| | | | | | | | | | | | | pseudo-random number generator on fork(). | ||||
* | | | Issue #16037: HTTPMessage.readheaders() raises an HTTPException when more than | Georg Brandl | 2013-10-27 | 1 | -0/+3 |
| | | | | | | | | | | | | 100 headers are read. Adapted from patch by Jyrki Pulliainen. | ||||
* | | | Issue #16040: CVE-2013-1752: nntplib: Limit maximum line lengths to 2048 to | Georg Brandl | 2013-10-27 | 1 | -0/+4 |
| | | | | | | | | | | | | | | | prevent readline() calls from consuming too much memory. Patch by Jyrki Pulliainen. | ||||
* | | | Issue #16041: CVE-2013-1752: poplib: Limit maximum line lengths to 2048 to | Georg Brandl | 2013-10-27 | 1 | -0/+4 |
| | | | | | | | | | | | | | | | prevent readline() calls from consuming too much memory. Patch by Jyrki Pulliainen. | ||||
* | | | Issue #17997: Change behavior of ``ssl.match_hostname()`` to follow RFC 6125, | Georg Brandl | 2013-10-27 | 1 | -0/+4 |
| | | | | | | | | | | | | | | | for security reasons. It now doesn't match multiple wildcards nor wildcards inside IDN fragments. | ||||
* | | | Issue #16039: CVE-2013-1752: Change use of readline in imaplib module to limit | Georg Brandl | 2013-10-27 | 1 | -3/+7 |
| | | | | | | | | | | | | line length. Patch by Emil Lind. | ||||
* | | | just return toplevel symbol table rather than all blocks (closes #19393) | Benjamin Peterson | 2013-10-26 | 1 | -0/+3 |
| | | | |||||
* | | | Close #19339: telnetlib module is now using time.monotonic() when available to | Victor Stinner | 2013-10-26 | 1 | -0/+3 |
| | | | | | | | | | | | | compute timeout. | ||||
* | | | Issue #19400: Prevent extension module build failures with Xcode 5 on OS X | Ned Deily | 2013-10-25 | 1 | -0/+4 |
| | | | | | | | | | | | | | | | 10.8+ when using a universal Python that included a PPC architecture, such as with a python.org 32-bit-only binary installer. | ||||
* | | | Issue #19392: Document that imp.reload() now relies on __loader__ | Brett Cannon | 2013-10-25 | 1 | -0/+3 |
| | | | | | | | | | | | | being defined on top of __name__. | ||||
* | | | Issue #19019: Change the OS X installer build script to use CFLAGS instead | Ned Deily | 2013-10-25 | 1 | -0/+5 |
| | | | | | | | | | | | | | | | | | | of OPT for special build options. By setting OPT, some compiler-specific options like -fwrapv were overridden and thus not used, which could result in broken interpreters when building with clang. |