summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
...
* 2.7.6rc1v2.7.6rc1Benjamin Peterson2013-10-262-4/+4
|
* just return toplevel symbol table rather than all blocks (closes #19393)Benjamin Peterson2013-10-261-0/+3
|
* Issue #19400: Prevent extension module build failures with Xcode 5 on OS XNed Deily2013-10-251-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 #19019: Change the OS X installer build script to use CFLAGS insteadNed Deily2013-10-251-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 Deily2013-10-251-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 TkNed Deily2013-10-251-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 #19327: Fixed the working of regular expressions with too big charset.Serhiy Storchaka2013-10-241-0/+2
|
* Increase macurl2path test coverageSenthil Kumaran2013-10-241-0/+3
|
* Issue #19352: Fix unittest discovery when a module can be reached through ↵Antoine Pitrou2013-10-231-0/+3
| | | | several paths (e.g. under Debian/Ubuntu with virtualenv).
* Issue #15207: Fix mimetypes to read from correct area in Windows registry ↵Tim Golden2013-10-222-0/+4
| | | | (Original patch by Dave Chambers)
* Issue #18603: Ensure that PyOS_mystricmp and PyOS_mystrnicmp are in theChristian Heimes2013-10-221-0/+3
| | | | Python executable and not removed by the linker's optimizer.
* #8964: fix platform._sys_version to handle IronPython 2.6+.Ezio Melotti2013-10-212-0/+4
|
* Issue #16038: CVE-2013-1752: ftplib: Limit amount of data read bySerhiy Storchaka2013-10-201-0/+4
| | | | | limiting the call to readline(). Original patch by Michał Jastrzębski and Giampaolo Rodola.
* Issue #19279: UTF-7 decoder no more produces illegal unicode strings.Serhiy Storchaka2013-10-191-0/+2
|
* Remove redundant empty lines.Serhiy Storchaka2013-10-181-13/+0
|
* Issue #19276: Fixed the wave module on 64-bit big-endian platforms.Serhiy Storchaka2013-10-171-0/+2
|
* Close #19267: Fix support of multibyte encoding (ex: UTF-16) in the loggingVictor Stinner2013-10-151-0/+3
| | | | module.
* Issue #18758: Fixed and improved cross-references.Serhiy Storchaka2013-10-131-0/+2
|
* Issue #18919: Added tests for the sunau module. Unified and extended testsSerhiy Storchaka2013-10-131-0/+3
| | | | for audio modules: aifc, sunau and wave.
* Issue #18739: Fix inconsistent results from math.log(n) and math.log(long(n))Mark Dickinson2013-10-131-0/+3
|
* Issue #18458: Prevent crashes with newer versions of libedit. Its readlineNed Deily2013-10-121-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 moduleSerhiy Storchaka2013-10-121-0/+6
| | | | | | | failed, second invocation of close() and destructor no more raise an exception. Second invocation of close() on sunau writer now has no effects. The aifc module now accepts lower case of names of the 'ulaw' and 'alaw' codecs.
* Issue #19131: The aifc module now correctly reads and writes sampwidth ofSerhiy Storchaka2013-10-121-0/+3
| | | | compressed streams.
* Issue 19158: a rare race in BoundedSemaphore could allow .release() too often.Tim Peters2013-10-091-0/+3
|
* Closes #17725: small grammar fix.Georg Brandl2013-10-061-0/+1
|
* Issue #18037: 2to3 now escapes '\u' and '\U' in native strings.Serhiy Storchaka2013-10-031-0/+2
|
* Issue #19137: The pprint module now correctly formats empty set and frozensetSerhiy Storchaka2013-10-021-0/+3
| | | | and instances of set and frozenset subclasses.
* - Issue #16040: CVE-2013-1752: nntplib: Limit maximum line lengths to 2048 toBarry Warsaw2013-09-301-0/+4
|\ | | | | | | | | prevent readline() calls from consuming too much memory. Patch by Jyrki Pulliainen.
| * - Issue #16040: CVE-2013-1752: nntplib: Limit maximum line lengths to 2048 toBarry Warsaw2013-09-301-0/+4
| | | | | | | | | | prevent readline() calls from consuming too much memory. Patch by Jyrki Pulliainen.
| * Fix typo in NEWS file.Barry Warsaw2013-09-301-1/+1
| |
| * - Issue #16041: CVE-2013-1752: poplib: Limit maximum line lengths to 2048 toBarry Warsaw2013-09-301-6/+11
| | | | | | | | | | prevent readline() calls from consuming too much member. Patch by Jyrki Pulliainen.
| * - Issue #16037: HTTPMessage.readheaders() raises an HTTPException when moreBarry Warsaw2013-09-291-0/+3
| | | | | | | | than 100 headers are read. Adapted from patch by Jyrki Pulliainen.
| * - Issue #16038: CVE-2013-1752: ftplib: Limit amount of data read byBarry Warsaw2013-09-251-0/+4
| | | | | | | | | | | | | | limiting the call to readline(). Original patch by Michał Jastrzębski and Giampaolo Rodola. with test fixes by Serhiy Storchaka.
| * - Issue #16039: CVE-2013-1752: Change use of readline in imaplib module toBarry Warsaw2013-09-221-0/+3
| | | | | | | | limit line length. Patch by Emil Lind.
* | Issue #12641: Avoid passing "-mno-cygwin" to the mingw32 compiler, except ↵Antoine Pitrou2013-09-302-0/+4
| | | | | | | | | | | | when necessary. Patch by Oscar Benjamin.
* | Properly initialize all fields of a SSL object after allocation.Antoine Pitrou2013-09-291-0/+2
| |
* | Issue #4366: Fix building extensions on all platforms when --enable-shared ↵Antoine Pitrou2013-09-281-0/+3
| | | | | | | | is used.
* | Issue #18950: Fix miscellaneous bugs in the sunau module.Serhiy Storchaka2013-09-281-0/+6
| | | | | | | | | | | | | | 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.
* | Issue #18050: Fixed an incompatibility of the re module with Python 2.7.3Serhiy Storchaka2013-09-201-0/+3
| | | | | | | | and older binaries.
* | #19037: adjust file times *before* moving maildir files into place.R David Murray2013-09-181-0/+4
| | | | | | | | | | This avoids race conditions when other programs are monitoring the maildir directory. Patch by janzert.
* | Issue #18873: IDLE, 2to3, and the findnocoding.py script now detect PythonSerhiy Storchaka2013-09-161-0/+6
| | | | | | | | source code encoding only in comment lines.
* | Merge #14984: On POSIX, enforce permissions when reading default .netrc.R David Murray2013-09-161-0/+6
|\ \ | |/
| * #14984: On POSIX, enforce permissions when reading default .netrc.R David Murray2013-09-161-0/+6
| | | | | | | | | | | | | | | | 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.
| * #16042: CVE-2013-1752: Limit amount of data read by limiting the call to ↵Andrew Kuchling2013-09-151-1/+4
| | | | | | | | | | | | | | | | | | | | 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 #18709: Fix CVE-2013-4238. The SSL module now handles NULL bytesBarry Warsaw2013-08-231-0/+9
| | | | | | | | | | | | | | inside subjectAltName correctly. Formerly the module has used OpenSSL's GENERAL_NAME_print() function to get the string represention of ASN.1 strings for `rfc822Name` (email), `dNSName` (DNS) and `uniformResourceIdentifier` (URI).
| * - Issue #16248: Disable code execution from the user's home directory byBarry Warsaw2013-02-201-0/+3
| | | | | | | | tkinter when the -E flag is passed to Python. Patch by Zachary Ware.
| * Post release twiddle.Barry Warsaw2012-04-101-0/+12
| |
| * Bump to 2.6.8v2.6.8Barry Warsaw2012-04-102-1/+9
| |
| * Bump to 2.6.8rc2v2.6.8rc2Barry Warsaw2012-03-171-1/+1
| |
| * Update Docs and NEWS for 2.6.8rc2.Barry Warsaw2012-03-171-1/+1
| |