summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
Commit message (Collapse)AuthorAgeFilesLines
* Bump to 3.3.0a1.Georg Brandl2012-03-041-3/+3
|
* - Issue #14177: marshal.loads() now raises TypeError when given an unicodeAntoine Pitrou2012-03-031-0/+3
|\ | | | | | | string. Patch by Guilherme Gonçalves.
| * Issue #14177: marshal.loads() now raises TypeError when given an unicode string.Antoine Pitrou2012-03-031-0/+3
| | | | | | | | Patch by Guilherme Gonçalves.
* | Close #13550: Remove the debug machinery from the threading module: removeVictor Stinner2012-03-031-0/+3
| | | | | | | | verbose arguments from all threading classes and functions.
* | Issue #14172: Fix reference leak when marshalling a buffer-like object ↵Antoine Pitrou2012-03-021-0/+3
|\ \ | |/ | | | | (other than a bytes object).
| * Issue #14172: Fix reference leak when marshalling a buffer-like object ↵Antoine Pitrou2012-03-021-0/+3
| | | | | | | | (other than a bytes object).
* | Issue #14159: Fix the len() of weak containers (WeakSet, WeakKeyDictionary, ↵Antoine Pitrou2012-03-011-0/+5
|\ \ | |/ | | | | | | | | | | WeakValueDictionary) to return a better approximation when some objects are dead or dying. Moreover, the implementation is now O(1) rather than O(n). Thanks to Yury Selivanov for reporting.
| * Issue #14159: Fix the len() of weak containers (WeakSet, WeakKeyDictionary, ↵Antoine Pitrou2012-03-011-0/+5
| | | | | | | | | | | | | | WeakValueDictionary) to return a better approximation when some objects are dead or dying. Moreover, the implementation is now O(1) rather than O(n). Thanks to Yury Selivanov for reporting.
* | Issue #13125: Silence spurious test_lib2to3 output when in non-verbose mode.Antoine Pitrou2012-02-271-0/+3
|\ \ | |/ | | | | Patch by Mikhail Novikov.
| * Issue #13125: Silence spurious test_lib2to3 output when in non-verbose mode.Antoine Pitrou2012-02-271-0/+3
| | | | | | | | Patch by Mikhail Novikov.
* | Fix comparison bug with 'rc' versions in packaging.version (#11841).Éric Araujo2012-02-271-0/+3
| | | | | | | | | | | | | | I added some tests in 2105ab8553b7 and found no bug, but it turns out that the doctest is not actually run. While converting the doctest to unittest style, I stumbled upon this bug again and this time applied the code patch provided by Filip Gruszczyński.
* | Issue #13521: dict.setdefault() now does only one lookup for the given key, ↵Antoine Pitrou2012-02-261-0/+3
|\ \ | |/ | | | | | | | | making it "atomic" for many purposes. Patch by Filip Gruszczyński.
| * Issue #13521: dict.setdefault() now does only one lookup for the given key, ↵Antoine Pitrou2012-02-261-0/+3
| | | | | | | | | | | | making it "atomic" for many purposes. Patch by Filip Gruszczyński.
* | Close issue #6210: Implement PEP 409Nick Coghlan2012-02-261-0/+4
| |
* | #14081: The sep and maxsplit parameter to str.split, bytes.split, and ↵Ezio Melotti2012-02-261-0/+3
| | | | | | | | bytearray.split may now be passed as keyword arguments.
* | Port the #6884 fix to packagingÉric Araujo2012-02-261-1/+1
| |
* | Merge from 3.2Éric Araujo2012-02-251-0/+3
|\ \ | |/
| * Add news entry for previous commitÉric Araujo2012-02-251-0/+3
| |
* | Merge 3.2Éric Araujo2012-02-251-0/+3
|\ \ | |/
| * Fix long-standing bugs with MANIFEST.in parsing on Windows (#6884).Éric Araujo2012-02-251-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 Brandl2012-02-231-6/+6
| |
* | - Issue #10181: New memoryview implementation fixes multiple ownershipStefan Krah2012-02-251-0/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | and lifetime issues of dynamically allocated Py_buffer members (#9990) as well as crashes (#8305, #7433). Many new features have been added (See whatsnew/3.3), and the documentation has been updated extensively. The ndarray test object from _testbuffer.c implements all aspects of PEP-3118, so further development towards the complete implementation of the PEP can proceed in a test-driven manner. Thanks to Nick Coghlan, Antoine Pitrou and Pauli Virtanen for review and many ideas. - Issue #12834: Fix incorrect results of memoryview.tobytes() for non-contiguous arrays. - Issue #5231: Introduce memoryview.cast() method that allows changing format and shape without making a copy of the underlying memory.
* | Issue #14084: Fix a file descriptor leak when importing a module with a bad ↵Antoine Pitrou2012-02-221-0/+3
|\ \ | |/ | | | | encoding.
| * Issue #14084: Fix a file descriptor leak when importing a module with a bad ↵Antoine Pitrou2012-02-221-0/+3
| | | | | | | | encoding.
* | Merge: #14053: Fix "make patchcheck" to work with MQ.Nadeem Vawda2012-02-221-0/+3
|\ \ | |/ | | | | Patch by Francisco Martín Brugué
| * Issue #14053: Fix "make patchcheck" to work with MQ.Nadeem Vawda2012-02-221-0/+3
| | | | | | | | Patch by Francisco Martín Brugué
* | enable hash randomization by defaultBenjamin Peterson2012-02-211-4/+3
| |
* | merge 2.6Martin v. Löwis2012-02-211-0/+2
|\ \ | |/
| * Issue #6807: Run msisupport.mak earlier.Martin v. Löwis2012-02-211-0/+2
| |
* | merge 3.2Martin v. Löwis2012-02-211-0/+2
|\ \ | |/
| * Issue #10580: Minor grammar change in Windows installer.Martin v. Löwis2012-02-211-0/+2
| |
* | Merge branch '3.2'Petri Lehtinen2012-02-211-0/+3
|\ \ | |/ | | | | Closes #8033.
| * sqlite3: Fix 64-bit integer handling in user functions on 32-bit architecturesPetri Lehtinen2012-02-211-0/+3
| | | | | | | | Closes #8033.
* | Merge the HTMLParser fix with 3.2.Ezio Melotti2012-02-211-0/+2
|\ \ | |/
| * HTMLParser is now able to handle slashes in the start tag.Ezio Melotti2012-02-211-0/+2
| |
* | update to Unicode 6.1Benjamin Peterson2012-02-211-0/+2
| |
* | Merge 3.2: Issue #13703 plus some related test suite fixes.Georg Brandl2012-02-201-0/+5
|\ \ | |/
| * Fix typo.Georg Brandl2012-02-201-1/+1
| |
| * Merge from 3.1: Issue #13703: add a way to randomize the hash values of ↵Georg Brandl2012-02-201-0/+5
| |\ | | | | | | | | | | | | | | | | | | | | | | | | 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 Brandl2012-02-201-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | 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 #14040: Remove rarely used file name suffixes for C extensions (under ↵Antoine Pitrou2012-02-201-0/+3
| | | | | | | | | | | | | | | | | | POSIX mainly). This will improve import performance a bit (especially under importlib).
* | | Issue #13641: Decoding functions in the base64 module now accept ASCII-only ↵Antoine Pitrou2012-02-201-0/+3
| | | | | | | | | | | | | | | | | | unicode strings. Patch by Catalin Iacob.
* | | add generic implementation of a __dict__ descriptor for C typesBenjamin Peterson2012-02-201-0/+4
| | |
* | | Issue #14043: Speed up importlib's _FileFinder by at least 8x, and add a new ↵Antoine Pitrou2012-02-201-0/+3
| | | | | | | | | | | | | | | | | | importlib.invalidate_caches() function. importlib is now often faster than imp.find_module() at finding modules.
* | | allow arbitrary attributes on classmethod and staticmethod (closes #14051)Benjamin Peterson2012-02-191-0/+3
| | |
* | | 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.
| | * Issue #14001: CVE-2012-0845: xmlrpc: Fix an endless loop in SimpleXMLRPCServerCharles-François Natali2012-02-181-0/+3
| | | | | | | | | | | | upon malformed POST request.
* | | Merge branch '3.2'Petri Lehtinen2012-02-171-0/+2
|\ \ \ | |/ / | | | | | | Closes #11689.
| * | Fix a variable scoping error in an sqlite3 testPetri Lehtinen2012-02-171-0/+2
| | | | | | | | | | | | Closes #11689.