summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
* bump to 2.7.3rc2v2.7.3rc2Benjamin Peterson2012-03-152-2/+2
|
* Fixes Issue #14234: CVE-2012-0876: Randomize hashes of xml attributesGregory P. Smith2012-03-141-0/+15
| | | | | | in the hash table internal to the pyexpat module's copy of the expat library to avoid a denial of service due to hash collisions. Patch by David Malcolm with some modifications by the expat project.
* bump to 2.7.3rc1v2.7.3rc1Benjamin Peterson2012-02-232-4/+4
|
* Issue #14053: Fix "make patchcheck" to work with MQ.Nadeem Vawda2012-02-222-0/+4
| | | | Patch by Francisco Martín Brugué
* merge with 2.6Georg Brandl2012-02-211-1/+1
|\
| * Remove reST markup from --help output. Also: O(n**2) is dict construction, ↵Georg Brandl2012-02-211-1/+1
| | | | | | | | not single insertion.
* | Issue #6807: Run msisupport.mak earlier.Martin v. Löwis2012-02-211-0/+2
| |
* | Issue #10580: Minor grammar change in Windows installer.Martin v. Löwis2012-02-211-0/+2
| |
* | sqlite3: Fix 64-bit integer handling in user functions on 32-bit architecturesPetri Lehtinen2012-02-212-0/+4
| | | | | | | | Closes #8033.
* | HTMLParser is now able to handle slashes in the start tag.Ezio Melotti2012-02-211-0/+2
| |
* | merge 2.6 with hash randomization fixBenjamin Peterson2012-02-212-0/+34
|\ \ | |/
| * - Issue #13703: oCERT-2011-003: add -R command-line option and PYTHONHASHSEEDBarry Warsaw2012-02-212-0/+34
| | | | | | | | | | | | environment variable, to provide an opt-in way to protect against denial of service attacks due to hash collisions within the dict and set types. Patch by David Malcolm, based on work by Victor Stinner.
* | Issue #12627: Implement PEP 394 for OS X framework builds.Ned Deily2012-02-191-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | OS X framework builds already created versioned symlinks for all executables and scripts installed in the framework bin directory, of the general form ${cmd} - ${cmd}2.7. The changes here add a hierarchy of ${cmd} -> ${cmd}2 -> ${cmd}2.7. Per previous practice, all of the links are created in the framework bin directory for both the install and altinstall targets. This is consistent with the long-standing recommendation to manage multiple framework versions by adding and ordering framework bin directories on $PATH. Also, per past practice, symlinks to all framework bin entries are created in $prefix/bin (by default, /usr/local/bin) for the install target and only versioned links are created for altinstall, although the use of these links is not recommended for framework builds and their installation is optional with the standard OS X installers.
* | Issue #14001: CVE-2012-0845: xmlrpc: Fix an endless loop in SimpleXMLRPCServerCharles-François Natali2012-02-181-0/+3
|\ \ | |/ | | | | upon malformed POST request.
| * Issue #14001: CVE-2012-0845: xmlrpc: Fix an endless loop in SimpleXMLRPCServerCharles-François Natali2012-02-181-0/+3
| | | | | | | | upon malformed POST request.
* | Fix a variable scoping error in an sqlite3 testPetri Lehtinen2012-02-172-0/+4
| | | | | | | | | | | | Initial patch by Torsten Landschoff. Closes #11689.
* | Fix errors in sqlite3's Cursor.rowcount documentationPetri Lehtinen2012-02-161-0/+2
| | | | | | | | Closes #13995.
* | news entry for previous commitGregory P. Smith2012-02-161-0/+2
| |
* | Issue #13014: Fix a possible reference leak in SSLSocket.getpeercert().Antoine Pitrou2012-02-151-0/+2
| |
* | Fix parsing of build_ext --libraries option (#1326113)Éric Araujo2012-02-151-0/+3
| |
* | #13987: HTMLParser is now able to handle malformed start tags.Ezio Melotti2012-02-151-1/+1
| |
* | #13987: HTMLParser is now able to handle EOFs in the middle of a construct.Ezio Melotti2012-02-151-0/+3
| |
* | Issue #13020: Fix a reference leak when allocating a structsequence object ↵Antoine Pitrou2012-02-151-0/+3
| | | | | | | | | | | | fails. Patch by Suman Saha.
* | Issue #13015: Fix a possible reference leak in defaultdict.__repr__.Antoine Pitrou2012-02-151-0/+3
| | | | | | | | Patch by Suman Saha.
* | Issue #13979: Fix ctypes.util.find_library ldconfig regexMeador Inge2012-02-141-0/+3
| |
* | #13993: HTMLParser is now able to handle broken end tags.Ezio Melotti2012-02-131-0/+2
| |
* | #13960: HTMLParser is now able to handle broken comments.Ezio Melotti2012-02-131-0/+2
| |
* | Issue #13930: Adds ability for 2to3 to write its output to a differentGregory P. Smith2012-02-121-3/+5
| | | | | | | | | | | | | | | | | | directory tree instead of overwriting the input files. Adds three command line options: -o/--output-dir, -W/--write-unchanged-files and --add-suffix. Feature backports into stable release branches for 2to3 are allowed by a special exemption: http://mail.python.org/pipermail/python-dev/2011-December/115089.html
* | Add myself to Misc/ACKSPetri Lehtinen2012-02-121-0/+1
| |
* | Fix sqlite3.Connection.iterdump on tables/fields with reserved names or quotesPetri Lehtinen2012-02-122-0/+5
| | | | | | | | Closes #9750
* | Typo in Misc/NEWS.Florent Xicluna2012-02-121-1/+1
| |
* | Fix distutils.filelist.FileList under Windows (#13193).Éric Araujo2012-02-121-2/+1
| | | | | | | | | | | | | | | | The code used to call os.path.join to build a regex but without escaping the backslash, which lead to test failures on Windows. Antoine Pitrou fixed it in 557a973709de by enhancing the code to accept both / and \, with proper escaping, but in my opinion this goes against the distutils feature freeze, hence this change.
* | Issue #13994: Earler partial revert of Distutils enhancements in 2.7Ned Deily2012-02-111-0/+7
| | | | | | | | | | | | | | | | has left two versions of customize_compiler, the original in distutils.sysconfig and another copy in distutils.ccompiler, with some parts of distutils calling one and others using the other. Complete the revert back to only having one in distutils.sysconfig as is the case in 3.x.
* | Issue #13590: On OS X 10.7 and 10.6 with Xcode 4.2, buildingNed Deily2012-02-101-0/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Distutils-based packages with C extension modules may fail because Apple has removed gcc-4.2, the version used to build python.org 64-bit/32-bit Pythons. If the user does not explicitly override the default C compiler by setting the CC environment variable, Distutils will now attempt to compile extension modules with clang if gcc-4.2 is required but not found. Also as a convenience, if the user does explicitly set CC, substitute its value as the default compiler in the Distutils LDSHARED configuration variable for OS X. (Note, the python.org 32-bit-only Pythons use gcc-4.0 and the 10.4u SDK, neither of which are available in Xcode 4. This change does not attempt to override settings to support their use with Xcode 4.)
* | Issue #9021: Add an introduction to the copy module. Doc changes suggested ↵Senthil Kumaran2012-02-091-0/+2
| | | | | | | | by Terry Reedy.
* | Fix Issue #6005: Examples in the socket library documentation use sendall,Senthil Kumaran2012-02-091-0/+3
| | | | | | | | where relevant, instead send method. Patch contributed by Brian Brazil.
* | Issue #10811: Fix recursive usage of cursors. Instead of crashing, raise a ↵Petri Lehtinen2012-02-061-0/+3
| | | | | | | | ProgrammingError now.
* | Issue #10881: Fix test_site failures with OS X framework builds.Ned Deily2012-02-051-0/+2
| |
* | Issue 964437 Make IDLE help window non-modal.Terry Jan Reedy2012-02-051-0/+3
| | | | | | | | Patch by Guilherme Polo and Roger Serwy.
* | Issue #13933: IDLE auto-complete did not work with some importedNed Deily2012-02-041-0/+3
| | | | | | | | module, like hashlib. (Patch by Roger Serwy)
* | Issue #13901: Prevent test_distutils failures on OS X with --enable-shared.Ned Deily2012-02-031-0/+2
| |
* | Document absoluteness of sys.executablePetri Lehtinen2012-02-021-0/+2
| | | | | | | | Closes #13402.
* | sqlite3: Handle strings with embedded zeros correctlyPetri Lehtinen2012-02-011-0/+2
| | | | | | | | Closes #13676.
* | #13506 Add '' to path for interactive interpreter by adding with_cwd parameterTerry Jan Reedy2012-01-312-0/+5
| | | | | | | | | | to PyShell.PyShell.transfer_path() and changing elsewhere as needed. Original patches by Marco Scataglini and Roger Serwy.
* | Issue #13806: The size check in audioop decompression functions was too ↵Antoine Pitrou2012-01-281-0/+3
| | | | | | | | | | | | strict and could reject valid compressed data. Patch by Oleg Plakhotnyuk.
* | Issue #13885: CVE-2011-3389: the _ssl module would always disable the CBC IV ↵Antoine Pitrou2012-01-271-0/+3
|\ \ | |/ | | | | attack countermeasure.
| * Issue #13885: CVE-2011-3389: the _ssl module would always disable the CBC IV ↵Antoine Pitrou2012-01-271-0/+3
| | | | | | | | attack countermeasure.
| * Replay svn r88852.Barry Warsaw2011-06-041-0/+12
| |
| * Replay svn r88850.v2.6.7Barry Warsaw2011-06-042-18/+6
| |
| * Replay changeset 70249:b571c7a8cf2e from fubar branch. Original commitBarry Warsaw2011-05-231-1/+11
| | | | | | | | | | | | message: Merging post 2.6.7rc2 changes from Subversion.