Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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 |
| | |||||
* | 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. | ||||
* | Issue #15663: Tcl/Tk 8.5.15 is now included with the OS X 10.6+ | Ned Deily | 2013-10-25 | 1 | -0/+6 |
| | | | | | | | 64-bit/32-bit installer for 10.6+. It is no longer necessary to install a third-party version of Tcl/Tk 8.5 to work around the problems in the Apple-supplied Tcl/Tk 8.5 shipped in OS X 10.6 and later releases. | ||||
* | Issue #1584: Provide options to override default search paths for Tcl and Tk | Ned Deily | 2013-10-25 | 1 | -0/+3 |
| | | | | | | | | | | | | | | | when building _tkinter. configure has two new options; if used, both must be specified: ./configure \ --with-tcltk-includes="-I/opt/local/include" \ --with-tcltk-libs="-L/opt/local/lib -ltcl8.5 -ltk8.5" In addition, the options can be overridden with make: make \ TCLTK_INCLUDES="-I/opt/local/include" \ TCLTK_LIBS="-L/opt/local/lib -ltcl8.6 -ltk8.6" | ||||
* | Issue #19288: Fixed the "in" operator of dbm.gnu databases for string | Serhiy Storchaka | 2013-10-24 | 1 | -0/+3 |
| | | | | argument. Original patch by Arfrever Frehtes Taifersar Arahesis. | ||||
* | Issue #19287: Fixed the "in" operator of dbm.ndbm databases for string | Serhiy Storchaka | 2013-10-24 | 1 | -0/+3 |
| | | | | argument. Original patch by Arfrever Frehtes Taifersar Arahesis. | ||||
* | Issue #19327: Fixed the working of regular expressions with too big charset. | Serhiy Storchaka | 2013-10-24 | 1 | -0/+2 |
| | |||||
* | Increase the coverage of macurl2path. Patch by Colin Williams. | Senthil Kumaran | 2013-10-24 | 1 | -0/+3 |
| | |||||
* | Issue #19356: Avoid using a C variabled named "_self", it's a reserved word ↵ | Antoine Pitrou | 2013-10-23 | 1 | -0/+3 |
| | | | | in some C compilers. | ||||
* | Issue #19352: Fix unittest discovery when a module can be reached through ↵ | Antoine Pitrou | 2013-10-23 | 1 | -0/+3 |
| | | | | several paths (e.g. under Debian/Ubuntu with virtualenv). | ||||
* | Issue #19340: Fix test_sysconfig when Python is built with an empty prefix. | Antoine Pitrou | 2013-10-23 | 1 | -0/+1 |
| | | | | Patch by Sunny K. | ||||
* | Issue #15207: Fix mimetypes to read from correct area in Windows registry ↵ | Tim Golden | 2013-10-22 | 2 | -0/+4 |
| | | | | (Original patch by Dave Chambers) | ||||
* | Issue #18603: Ensure that PyOS_mystricmp and PyOS_mystrnicmp are in the | Christian Heimes | 2013-10-22 | 1 | -0/+3 |
| | | | | Python executable and not removed by the linker's optimizer. | ||||
* | #8964: fix platform._sys_version to handle IronPython 2.6+. | Ezio Melotti | 2013-10-21 | 2 | -0/+4 |
| | |||||
* | Issue #16038: CVE-2013-1752: ftplib: Limit amount of data read by | Serhiy Storchaka | 2013-10-20 | 1 | -0/+4 |
| | | | | | limiting the call to readline(). Original patch by Michał Jastrzębski and Giampaolo Rodola. | ||||
* | Issue #18235: Fix the sysconfig variables LDSHARED and BLDSHARED under AIX. | Antoine Pitrou | 2013-10-19 | 1 | -0/+3 |
| | | | | Patch by David Edelsohn. | ||||
* | Issue #19279: UTF-7 decoder no more produces illegal strings. | Serhiy Storchaka | 2013-10-19 | 1 | -0/+2 |
| | |||||
* | Remove redundant empty lines. | Serhiy Storchaka | 2013-10-18 | 1 | -1/+1 |
| | |||||
* | Issue #19276: Fixed the wave module on 64-bit big-endian platforms. | Serhiy Storchaka | 2013-10-17 | 1 | -0/+2 |
| | |||||
* | Issue #14407: Fix unittest test discovery in test_concurrent_futures. | Antoine Pitrou | 2013-10-15 | 1 | -0/+2 |
| | |||||
* | Issue #18758: Fixed and improved cross-references. | Serhiy Storchaka | 2013-10-13 | 1 | -0/+2 |
| | |||||
* | Issue #18776: atexit callbacks now display their full traceback when they ↵ | Antoine Pitrou | 2013-10-13 | 1 | -0/+3 |
| | | | | raise an exception. | ||||
* | Merge heads | Serhiy Storchaka | 2013-10-13 | 1 | -0/+3 |
|\ | |||||
| * | Issue #18919: Unified and extended tests for audio modules: aifc, sunau and | Serhiy Storchaka | 2013-10-13 | 1 | -0/+3 |
| | | | | | | | | wave. | ||||
* | | Issue #17827: Document codecs.encode and codecs.decode | Nick Coghlan | 2013-10-13 | 1 | -0/+3 |
|/ | |||||
* | Issue #18458: Prevent crashes with newer versions of libedit. Its readline | Ned Deily | 2013-10-12 | 1 | -0/+4 |
| | | | | | emulation has changed from 0-based indexing to 1-based like gnu readline. Original patch by Ronald Oussoren. | ||||
* | Issue #18919: If the close() method of a writer in the sunau or wave module | Serhiy Storchaka | 2013-10-12 | 1 | -0/+4 |
| | | | | | failed, second invocation of close() and destructor no more raise an exception. | ||||
* | Issue #19131: The aifc module now correctly reads and writes sampwidth of | Serhiy Storchaka | 2013-10-12 | 1 | -0/+3 |
| | | | | compressed streams. | ||||
* | Repair format of NEWS entry. | Tim Peters | 2013-10-09 | 1 | -1/+2 |
| | |||||
* | Issue 19158: a rare race in BoundedSemaphore could allow .release() too often. | Tim Peters | 2013-10-09 | 1 | -0/+2 |
| | |||||
* | Fix macro expansion of _PyErr_OCCURRED(), and make sure to use it in at ↵ | Antoine Pitrou | 2013-10-07 | 1 | -0/+3 |
| | | | | least one place so as to avoid regressions. | ||||
* | Closes #1215: document better why it is not a good idea to catch e.g. ↵ | Georg Brandl | 2013-10-06 | 1 | -0/+1 |
| | | | | | | SIGSEGV and refer to faulthandler. Patch by Martin Pool. | ||||
* | [issue19152] Revert 832579dbafd6. | Eric Snow | 2013-10-03 | 1 | -2/+0 |
| | |||||
* | Fix typo. | Eric Snow | 2013-10-03 | 1 | -1/+1 |
| | |||||
* | [issue19152] Add ExtensionFileLoader.get_filename(). | Eric Snow | 2013-10-03 | 1 | -0/+2 |
| | |||||
* | [issue19151] Fix docstring and use of _get_suppported_file_loaders() to ↵ | Eric Snow | 2013-10-03 | 1 | -0/+3 |
| | | | | reflect 2-tuples. |