| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Bump to 3.2.3rc2.v3.2.3rc2 | Georg Brandl | 2012-03-18 | 2 | -11/+8 |
| | | |||||
| * | Transplant from main repo d6c197edd99b: Fixes Issue #14234: CVE-2012-0876: ↵ | Georg Brandl | 2012-03-15 | 1 | -2/+10 |
| | | | | | Randomize hashes of xml attributes | ||||
| * | 3.2.3rc1 done | Georg Brandl | 2012-02-25 | 1 | -4/+16 |
| | | |||||
| * | Fix long-standing bugs with MANIFEST.in parsing on Windows (#6884). | Éric Araujo | 2012-02-25 | 1 | -0/+3 |
| | | | | | | | | | | | | | | | | These regex changes fix a number of issues for distutils on Windows: - #6884: impossible to include a file starting with 'build' - #9691 and #14004: sdist includes too many files - #13193: test_filelist failures This commit replaces the incorrect changes done in 0a94e2f807c7 and 90b30d62caf2 to fix #13193; we were too eager to fix the test failures and I did not study the code enough before greenlighting patches. This time we have unit tests from the problems reported by users to be sure we have the right fix. Thanks to Nadeem Vawda for his help. | ||||
| * | Bump version to 3.2.3rc1. | Georg Brandl | 2012-02-23 | 2 | -7/+7 |
| | | |||||
| * | Issue #14084: Fix a file descriptor leak when importing a module with a bad ↵ | Antoine Pitrou | 2012-02-22 | 1 | -0/+3 |
| | | | | | encoding. | ||||
| * | Issue #14053: Fix "make patchcheck" to work with MQ. | Nadeem Vawda | 2012-02-22 | 1 | -0/+3 |
| | | | | | Patch by Francisco Martín Brugué | ||||
| * | merge with 3.2 | Georg Brandl | 2012-02-21 | 1 | -1/+1 |
| |\ | |||||
| | * | Remove reST markup from --help output. Also: O(n**2) is dict construction, ↵ | Georg Brandl | 2012-02-21 | 1 | -1/+1 |
| | | | | | | | | | not single insertion. | ||||
| | * | Fix typo. | Georg Brandl | 2012-02-20 | 1 | -1/+1 |
| | | | |||||
| * | | Issue #6807: Run msisupport.mak earlier. | Martin v. Löwis | 2012-02-21 | 1 | -0/+2 |
| | | | |||||
| * | | Issue #10580: Minor grammar change in Windows installer. | Martin v. Löwis | 2012-02-21 | 1 | -0/+2 |
| | | | |||||
| * | | sqlite3: Fix 64-bit integer handling in user functions on 32-bit architectures | Petri Lehtinen | 2012-02-21 | 2 | -0/+4 |
| | | | | | | | | | Closes #8033. | ||||
| * | | HTMLParser is now able to handle slashes in the start tag. | Ezio Melotti | 2012-02-21 | 1 | -0/+2 |
| | | | |||||
| * | | Fix typo. | Georg Brandl | 2012-02-20 | 1 | -1/+1 |
| | | | |||||
| * | | Merge from 3.1: Issue #13703: add a way to randomize the hash values of ↵ | Georg Brandl | 2012-02-20 | 2 | -0/+34 |
| |\ \ | |/ | | | | | | | | | | | | | | | basic types (str, bytes, datetime) in order to make algorithmic complexity attacks on (e.g.) web apps much more complicated. The environment variable PYTHONHASHSEED and the new command line flag -R control this behavior. | ||||
| | * | Issue #13703: add a way to randomize the hash values of basic types (str, ↵ | Georg Brandl | 2012-02-20 | 2 | -0/+34 |
| | | | | | | | | | | | | | | | | | | | bytes, datetime) in order to make algorithmic complexity attacks on (e.g.) web apps much more complicated. The environment variable PYTHONHASHSEED and the new command line flag -R control this behavior. | ||||
| * | | Issue #14001: CVE-2012-0845: xmlrpc: Fix an endless loop in SimpleXMLRPCServer | Charles-François Natali | 2012-02-18 | 1 | -0/+3 |
| |\ \ | |/ | | | | | upon malformed POST request. | ||||
| | * | Issue #14001: CVE-2012-0845: xmlrpc: Fix an endless loop in SimpleXMLRPCServer | Charles-François Natali | 2012-02-18 | 1 | -0/+3 |
| | | | | | | | | | upon malformed POST request. | ||||
| * | | Fix a variable scoping error in an sqlite3 test | Petri Lehtinen | 2012-02-17 | 1 | -0/+2 |
| | | | | | | | | | Closes #11689. | ||||
| * | | sqlite3: Fix documentation errors concerning Cursor.rowcount | Petri Lehtinen | 2012-02-16 | 1 | -2/+2 |
| | | | | | | | | | Closes #13995. | ||||
| * | | NEWS entry for previous commit. | Gregory P. Smith | 2012-02-16 | 1 | -0/+2 |
| | | | |||||
| * | | Issue #13014: Fix a possible reference leak in SSLSocket.getpeercert(). | Antoine Pitrou | 2012-02-15 | 1 | -0/+2 |
| | | | |||||
| * | | Issue #13491: Fix many errors in sqlite3 documentation | Petri Lehtinen | 2012-02-15 | 2 | -0/+4 |
| | | | | | | | | | Initial patch by Johannes Vogel. | ||||
| * | | Fix parsing of build_ext --libraries option (#1326113) | Éric Araujo | 2012-02-15 | 1 | -0/+3 |
| | | | |||||
| * | | Issue #13020: Fix a reference leak when allocating a structsequence object ↵ | Antoine Pitrou | 2012-02-15 | 1 | -0/+3 |
| | | | | | | | | | | | | | fails. Patch by Suman Saha. | ||||
| * | | Issue #13015: Fix a possible reference leak in defaultdict.__repr__. | Antoine Pitrou | 2012-02-15 | 1 | -0/+3 |
| | | | | | | | | | Patch by Suman Saha. | ||||
| * | | Issue #10287: nntplib now queries the server's CAPABILITIES first before ↵ | Antoine Pitrou | 2012-02-14 | 1 | -0/+4 |
| | | | | | | | | | | | | | sending MODE READER, and only sends it if not already in READER mode. Patch by Hynek Schlawack. | ||||
| * | | Issue #13979: Fix ctypes.util.find_library ldconfig regex | Meador Inge | 2012-02-14 | 1 | -0/+3 |
| | | | |||||
| * | | #13993: HTMLParser is now able to handle broken end tags when strict=False. | Ezio Melotti | 2012-02-13 | 1 | -0/+3 |
| | | | |||||
| * | | Issue #13930: Adds ability for 2to3 to write its output to a different | Gregory P. Smith | 2012-02-12 | 1 | -0/+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 | ||||
| * | | Fix sqlite3.Connection.iterdump on tables/fields with reserved names or quotes | Petri Lehtinen | 2012-02-12 | 2 | -0/+5 |
| | | | | | | | | | Closes #9750 | ||||
| * | | Issue #10287: nntplib now queries the server's CAPABILITIES again after ↵ | Antoine Pitrou | 2012-02-12 | 1 | -0/+4 |
| | | | | | | | | | | | | | authenticating (since the result may change, according to RFC 4643). Patch by Hynek Schlawack. | ||||
| * | | Fix distutils.filelist.FileList under Windows (#13193). | Éric Araujo | 2012-02-12 | 1 | -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 0a94e2f807c7 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 #13989: Document that GzipFile does not support text mode. | Nadeem Vawda | 2012-02-11 | 1 | -0/+3 |
| | | | | | | | | | Also, give a more helpful error message when opened with an invalid mode string. | ||||
| * | | Issue #13590: On OS X 10.7 and 10.6 with Xcode 4.2, building | Ned Deily | 2012-02-10 | 1 | -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.) | ||||
| * | | #13960: HTMLParser is now able to handle broken comments when strict=False. | Ezio Melotti | 2012-02-10 | 1 | -1/+4 |
| | | | |||||
| * | | Issue #9021 - Introduce copy module better. Doc changes suggested by Terry | Senthil Kumaran | 2012-02-09 | 1 | -0/+2 |
| | | | | | | | | | Reedy. | ||||
| * | | Fix Issue #6005: Examples in the socket library documentation use sendall, | Senthil Kumaran | 2012-02-09 | 1 | -0/+3 |
| | | | | | | | | | where relevant, instead send method. | ||||
| * | | Issue #10811: Fix recursive usage of cursors. Instead of crashing, raise a ↵ | Petri Lehtinen | 2012-02-06 | 1 | -0/+3 |
| | | | | | | | | | ProgrammingError now. | ||||
| * | | Issue #10881: Fix test_site failure with OS X framework builds. | Ned Deily | 2012-02-05 | 1 | -0/+2 |
| | | | |||||
| * | | Issue 964437 Make IDLE help window non-modal. | Terry Jan Reedy | 2012-02-05 | 1 | -0/+3 |
| | | | | | | | | | Patch by Guilherme Polo and Roger Serwy. | ||||
| * | | Branch merge | Éric Araujo | 2012-02-05 | 2 | -0/+3 |
| |\ \ | |||||
| | * | | Stop ignoring RPMs in distutils' upload command (#2945). | Éric Araujo | 2012-01-15 | 2 | -0/+3 |
| | | | | | | | | | | | | | | | | | | | | | | Bug reported by Hartmut Goebel and patch contributed by Carl Robben. Carl tested the fix and we have a buildbot with rpm installed, so I’m committing even though I could not run this test (but I do understand the changed code :) | ||||
| * | | | Issue #13933: IDLE auto-complete did not work with some imported | Ned Deily | 2012-02-04 | 1 | -0/+3 |
| | | | | | | | | | | | | | module, like hashlib. (Patch by Roger Serwy) | ||||
| * | | | Issue #13901: Prevent test_distutils failures on OS X with --enable-shared. | Ned Deily | 2012-02-03 | 1 | -0/+2 |
| | | | | |||||
| * | | | Document absoluteness of sys.executable | Petri Lehtinen | 2012-02-02 | 1 | -0/+2 |
| | | | | | | | | | | | | | Closes #13402. | ||||
| * | | | sqlite3: Handle strings with embedded zeros correctly | Petri Lehtinen | 2012-02-01 | 1 | -0/+2 |
| | | | | | | | | | | | | | Closes #13676. | ||||
| * | | | #13506 Add '' to path for interactive interpreter by adding with_cwd parameter | Terry Jan Reedy | 2012-01-31 | 2 | -1/+5 |
| | | | | | | | | | | | | | | | | to PyShell.PyShell.transfer_path() and changing elsewhere as needed. Original patches by Marco Scataglini and Roger Serwy. | ||||
| * | | | ready types returned from PyType_FromSpec | Benjamin Peterson | 2012-01-30 | 1 | -0/+2 |
| | | | | |||||
