Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Added tag v3.3.0 for changeset de6b91d97113 | Georg Brandl | 2012-09-29 | 1 | -0/+1 |
| | |||||
* | Update release date in whatsnew document. | Georg Brandl | 2012-09-29 | 1 | -0/+1 |
| | |||||
* | Bump version to 3.3.0 final. | Georg Brandl | 2012-09-29 | 6 | -12/+9 |
| | |||||
* | Point "source" links in the docs to the 3.3 versions in the repo. | Georg Brandl | 2012-09-29 | 1 | -1/+1 |
| | |||||
* | Add a versionchanged note for #9374 changes. | Georg Brandl | 2012-09-29 | 1 | -2/+6 |
| | |||||
* | Issue #16060: Fix a double DECREF in int() implementation. Thanks Serhiy ↵ | Mark Dickinson | 2012-09-27 | 2 | -4/+6 |
| | | | | Storchaka. | ||||
* | don't depend on __debug__ because it's baked in at freeze time (issue #16046) | Benjamin Peterson | 2012-09-25 | 3 | -4229/+4241 |
| | |||||
* | Close #16022: What's New in Python 3.3 document is no more at beta stage | Victor Stinner | 2012-09-24 | 1 | -4/+0 |
| | |||||
* | Port #16012 fix: parameter parsing regression in pyexpat parser ↵ | Georg Brandl | 2012-09-24 | 2 | -2/+9 |
| | | | | UseForeignDTD() method. | ||||
* | Post-release updates. | Georg Brandl | 2012-09-24 | 2 | -1/+13 |
| | |||||
* | Added tag v3.3.0rc3 for changeset c191d21cefaf | Georg Brandl | 2012-09-23 | 1 | -0/+1 |
| | |||||
* | Bump to 3.3.0rc3.v3.3.0rc3 | Georg Brandl | 2012-09-23 | 6 | -9/+9 |
| | |||||
* | Add news entries for recent changes. | Georg Brandl | 2012-09-23 | 1 | -0/+3 |
| | |||||
* | GCC doesn't support typeof in strict ansi mode (e.g. -ansi or -std=c89) | Christian Heimes | 2012-09-23 | 1 | -1/+1 |
| | |||||
* | Use C-style comments for C89 / ANSI C compatibility | Christian Heimes | 2012-09-23 | 1 | -1/+1 |
| | |||||
* | Use C-style comments (required for the AIX build slave). | Stefan Krah | 2012-09-23 | 1 | -2/+2 |
| | |||||
* | Use C-style comments. | Stefan Krah | 2012-09-23 | 1 | -24/+24 |
| | |||||
* | Fixed reference leak in error branch of _bufferedreader_read_all(). The ↵ | Christian Heimes | 2012-09-10 | 1 | -1/+3 |
| | | | | variable data can contain a bytes object but it wasn't cleaned up when PyList_New() failed. CID 715364 | ||||
* | Fixed memory leak in error branch of formatfloat(). CID 719687 | Christian Heimes | 2012-09-10 | 1 | -1/+3 |
| | |||||
* | Fix issue number. | Georg Brandl | 2012-09-23 | 1 | -1/+1 |
| | |||||
* | Cleanup/rewrite shutil docs regarding follow_symlinks and copying attributes. | Larry Hastings | 2012-09-21 | 1 | -31/+84 |
| | |||||
* | Mention that "defaults" can be None for inspect.getfullargspec. | Larry Hastings | 2012-09-21 | 1 | -5/+6 |
| | | | | Also minor formatting cleanups. | ||||
* | Add What's New entries for some minor work I did in 3.3. | Larry Hastings | 2012-09-21 | 1 | -1/+12 |
| | |||||
* | Fixed out-of-bounce write to rawmode buffer. The fixed size buffer wasn't ↵ | Christian Heimes | 2012-09-10 | 1 | -1/+1 |
| | | | | enlarged for the new 'x' flag. The buffer may contain the 5 flags xrwa+ and the \0 byte | ||||
* | Issue #15900: Fixed reference leak in PyUnicode_TranslateCharmap() | Christian Heimes | 2012-09-11 | 2 | -6/+7 |
| | |||||
* | Closes #15973: fix a segmentation fault when comparing timezone objects. | Georg Brandl | 2012-09-22 | 4 | -0/+13 |
| | |||||
* | Issue #15926: Fix crash after multiple reinitializations of the interpreter. | Antoine Pitrou | 2012-09-12 | 2 | -1/+3 |
| | |||||
* | Closes #15925: fix regression in parsedate() and parsedate_tz() that should ↵ | Georg Brandl | 2012-09-22 | 4 | -24/+21 |
| | | | | return None if unable to parse the argument. | ||||
* | Closes #15969: rename new API to have consistent names in the faulthandler ↵ | Georg Brandl | 2012-09-22 | 4 | -37/+41 |
| | | | | module. | ||||
* | Fix NEWS entry location. | Georg Brandl | 2012-09-22 | 1 | -4/+7 |
| | |||||
* | Issue #15977: Fix memory leak in Modules/_ssl.c when the function ↵ | Christian Heimes | 2012-09-20 | 2 | -0/+10 |
| | | | | _set_npn_protocols() is called multiple times | ||||
* | Spacing fix. | Georg Brandl | 2012-09-22 | 1 | -0/+1 |
| | |||||
* | Issue #15882: Change _decimal to accept any coefficient tuple when | Stefan Krah | 2012-09-10 | 3 | -7/+21 |
| | | | | | | constructing infinities. This is done for backwards compatibility with decimal.py: Infinity coefficients are undefined in _decimal (in accordance with the specification). | ||||
* | Updates NEWS for issue #15895 | Christian Heimes | 2012-09-11 | 1 | -1/+5 |
| | |||||
* | Issue #15895: my analysis was slightly off. The FILE pointer is only leaked ↵ | Christian Heimes | 2012-09-11 | 1 | -8/+6 |
| | | | | when set_main_loader() fails for a pyc file with closeit=0. In the success case run_pyc_file() does its own cleanup of the fp. I've changed the code to use another FILE ptr for pyc files and moved the fclose() to PyRun_SimpleFileExFlags() to make it more obvious what's happening. | ||||
* | Issue #15895: Fix FILE pointer leak in PyRun_SimpleFileExFlags() when ↵ | Christian Heimes | 2012-09-11 | 1 | -1/+5 |
| | | | | filename points to a pyc/pyo file and closeit is false. | ||||
* | Post-release updates for 3.3.0rc2. | Georg Brandl | 2012-09-09 | 2 | -1/+13 |
| | |||||
* | Added tag v3.3.0rc2 for changeset 88a0792e8ba3 | Georg Brandl | 2012-09-09 | 1 | -0/+1 |
| | |||||
* | Issue #15814: Update whatsnew to the current state of hashing memoryviews.v3.3.0rc2 | Stefan Krah | 2012-09-08 | 1 | -3/+2 |
| | |||||
* | Issue #15814: Add NEWS entry regarding intended memoryview hashing restrictions | Nick Coghlan | 2012-09-03 | 1 | -0/+8 |
| | |||||
* | Issue #15814: Documentation: disallow hashing of multi-dimensional memoryviews. | Stefan Krah | 2012-09-02 | 1 | -6/+8 |
| | |||||
* | Bump to 3.3.0rc2. | Georg Brandl | 2012-09-09 | 6 | -7/+7 |
| | |||||
* | Fix NEWS entry location. | Georg Brandl | 2012-09-09 | 1 | -3/+6 |
| | |||||
* | Issue #15822: Fix installation of lib2to3 grammar pickles to ensure | Ned Deily | 2012-09-09 | 3 | -3/+25 |
| | | | | | they are created in the install locations and with the proper timestamp. (Solution suggested by MvL) | ||||
* | Issue #13992: The trashcan mechanism is now thread-safe. This eliminates | Antoine Pitrou | 2012-09-05 | 7 | -9/+140 |
| | | | | | | | | | | | sporadic crashes in multi-thread programs when several long deallocator chains ran concurrently and involved subclasses of built-in container types. Because of this change, a couple extension modules compiled for 3.2.4 (those which use the trashcan mechanism, despite it being undocumented) will not be loadable by 3.2.3 and earlier. However, extension modules compiled for 3.2.3 and earlier will be loadable by 3.2.4. | ||||
* | Changelog entry for 8c2e87aeb707. | Georg Brandl | 2012-09-08 | 1 | -0/+3 |
| | |||||
* | Fix bug with argparse.Parser.parse_args(*args) | Zbigniew Jędrzejewski-Szmek | 2012-09-02 | 2 | -1/+22 |
| | |||||
* | Closes #10650: Deprecate the watchexp parameter of Decimal.quantize(). | Stefan Krah | 2012-08-30 | 3 | -0/+12 |
| | |||||
* | Issue #15814: Document planned restrictions for memoryview hashes in 3.3.1. | Stefan Krah | 2012-09-01 | 1 | -15/+7 |
| | |||||
* | Issue #15724: Add versionchanged tags to the memoryview documentation. | Stefan Krah | 2012-08-30 | 1 | -2/+10 |
| |