Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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 |
| | |||||
* | Add missing unit. | Stefan Krah | 2012-09-01 | 1 | -1/+1 |
| | |||||
* | Compile _decimal without asserts and update benchmark results. | Stefan Krah | 2012-09-01 | 2 | -2/+2 |
| | |||||
* | Close #14223: Fix window.addch(curses.ACS_HLINE) | Victor Stinner | 2012-09-01 | 2 | -27/+14 |
| | | | | | | | | | Fix window.addch() of the curses module for special characters like curses.ACS_HLINE: the Python function addch(int) and addch(bytes) is now calling the C function waddch()/mvwaddch() (as it was done in Python 3.2), instead of wadd_wch()/mvwadd_wch(). The Python function addch(str) is still calling the C function wadd_wch()/mvwadd_wch() if the Python curses is linked to libncursesw. | ||||
* | Issue #15828: Don't try to close a file if imp.find_module() doesn't | Brett Cannon | 2012-08-31 | 1 | -1/+3 |
| | | | | return one. | ||||
* | Issue #15828: Restore support for C extension modules in imp.load_module() | Nick Coghlan | 2012-08-31 | 4 | -21/+35 |
| | |||||
* | Issue #15340: Fix importing the random module when /dev/urandom cannot be ↵ | Antoine Pitrou | 2012-09-07 | 2 | -1/+5 |
| | | | | | | opened. This was a regression caused by the hash randomization patch. | ||||
* | Issue #15781: Fix two small race conditions in import's module locking. | Antoine Pitrou | 2012-08-27 | 5 | -3635/+3659 |
| | |||||
* | Issue #15784: Modify OSError.__str__() to better distinguish between | Richard Oudkerk | 2012-08-28 | 3 | -4/+7 |
| | | | | errno error numbers and Windows error numbers. | ||||
* | Issue #15785: Modify window.get_wch() API of the curses module: return a | Victor Stinner | 2012-08-28 | 4 | -13/+20 |
| | | | | | | character for most keys, and an integer for special keys, instead of always returning an integer. So it is now possible to distinguish special keys like keypad keys. | ||||
* | Post-release updates. | Georg Brandl | 2012-08-25 | 2 | -1/+13 |
| | |||||
* | Added tag v3.3.0rc1 for changeset 8bb5c7bc46ba | Georg Brandl | 2012-08-25 | 1 | -0/+1 |
| | |||||
* | Bump to 3.3.0rc1.v3.3.0rc1 | Georg Brandl | 2012-08-25 | 6 | -9/+9 |
| | |||||
* | Update pydoc topics and suspicious markup file. | Georg Brandl | 2012-08-25 | 2 | -9/+10 |
| | |||||
* | Fix issue 13370: Ensure that ctypes works on Mac OS X when Python is | Ronald Oussoren | 2012-08-25 | 5 | -7/+128 |
|\ | | | | | | | | | | | compiled using the clang compiler (merge from 3.2) | ||||
| * | Fix issue 13370: Ensure that ctypes works on Mac OS X when Python is ↵ | Ronald Oussoren | 2012-08-25 | 5 | -7/+128 |
| | | | | | | | | compiled using the clang compiler | ||||
* | | merge with 3.2 | Georg Brandl | 2012-08-25 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Fix wrong way of adding Error information in shutil.copytree. | Georg Brandl | 2012-08-25 | 1 | -1/+1 |
| | | |||||
* | | Close #15573: use value-based memoryview comparisons (patch by Stefan Krah) | Nick Coghlan | 2012-08-25 | 5 | -133/+779 |
| | | |||||
* | | Update various OS X README files for 3.3.0. | Ned Deily | 2012-08-25 | 4 | -59/+163 |
| | | |||||
* | | Issue #15316: Let exceptions raised during imports triggered by the | Brett Cannon | 2012-08-24 | 4 | -193/+254 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | fromlist of __import__ propagate. The problem previously was that if something listed in fromlist didn't exist then that's okay. The fix for that was too broad in terms of catching ImportError. The trick with the solution to this issue is that the proper refactoring of import thanks to importlib doesn't allow for a way to distinguish (portably) between an ImportError because finders couldn't find a loader, or a loader raised the exception. In Python 3.4 the hope is to introduce a new exception (e.g. ModuleNotFound) to make it clean to differentiate why ImportError was raised. | ||||
* | | Null merge from 3.2 | Mark Dickinson | 2012-08-24 | 0 | -0/+0 |
|\ \ | |/ | |||||
| * | Remove overeager test (don't depend on the sign of a nan; cf. issue #14521) | Mark Dickinson | 2012-08-24 | 1 | -4/+0 |
| | | |||||
* | | Reverted change to venv initialisation. | Vinay Sajip | 2012-08-24 | 1 | -9/+1 |
| | | |||||
* | | Null merge | Mark Dickinson | 2012-08-24 | 0 | -0/+0 |
|\ \ | |/ | |||||
| * | Remove incorrect lines (meant for cdecimal) from recently added Decimal tests. | Mark Dickinson | 2012-08-24 | 1 | -2/+0 |
| | | |||||
* | | Null merge from 3.2. | Mark Dickinson | 2012-08-24 | 0 | -0/+0 |
|\ \ | |/ | |||||
| * | Issue #15544: Fix Decimal.__float__ to work with payload-carrying NaNs. | Mark Dickinson | 2012-08-24 | 3 | -1/+25 |
| | | |||||
* | | Issue #13072: The array module's 'u' format code is now deprecated and | Stefan Krah | 2012-08-24 | 3 | -1/+16 |
| | | | | | | | | will be removed in Python 4.0. | ||||
* | | Merge | Antoine Pitrou | 2012-08-24 | 4 | -2/+42 |
|\ \ | |||||
| * | | Issue #15544: Fix Decimal.__float__ to work with payload-carrying NaNs. | Mark Dickinson | 2012-08-24 | 4 | -2/+42 |
| | | | |||||
* | | | Add glossary references | Antoine Pitrou | 2012-08-24 | 1 | -3/+3 |
|\ \ \ | |/ / |/| / | |/ | |||||
| * | Add glossary references | Antoine Pitrou | 2012-08-24 | 1 | -3/+3 |
| | | |||||
* | | Merge | Antoine Pitrou | 2012-08-24 | 2 | -1880/+1875 |
|\ \ | |||||
| * | | Issue #2051: Tweak last commit for this issue to pass in mode instead | Brett Cannon | 2012-08-24 | 2 | -1880/+1875 |
| | | | | | | | | | | | | | | | of source path to set_data() and make the new argument private until possible API changes can be discussed more thoroughly in Python 3.4. | ||||
* | | | Issue #14674: Add a discussion of the json module's standard compliance. | Antoine Pitrou | 2012-08-24 | 2 | -6/+114 |
|\ \ \ | |/ / |/| / | |/ | Patch by Chris Rebert. | ||||
| * | Issue #14674: Add a discussion of the json module's standard compliance. | Antoine Pitrou | 2012-08-24 | 2 | -6/+114 |
| | | | | | | | | Patch by Chris Rebert. | ||||
* | | Issue #15778: Coerce ImportError.args to a string when it isn't | Brett Cannon | 2012-08-24 | 3 | -1/+9 |
| | | | | | | | | | | | | already one. Patch by Dave Malcolm. | ||||
* | | Closes #9374: merge with 3.2 | Georg Brandl | 2012-08-24 | 1 | -0/+10 |
|\ \ | |/ | |||||
| * | Closes #9374: add back now-unused module attributes; removing them is a ↵ | Georg Brandl | 2012-08-24 | 1 | -0/+10 |
| | | | | | | | | backward compatibility issue, since they have a public-seeming name. | ||||
* | | Issue #15776: Allow pyvenv to work in existing directory with --clean. | Andrew Svetlov | 2012-08-24 | 2 | -1/+11 |
| | | | | | | | | Patch by Vinay Sajip. | ||||
* | | Merge #15249: Mangle From lines correctly when body contains invalid bytes. | R David Murray | 2012-08-24 | 4 | -1/+21 |
|\ \ | |/ | | | | | Fix by Colin Su. Test by me, based on a test written by Petri Lehtinen. | ||||
| * | #15249: Mangle From lines correctly when body contains invalid bytes. | R David Murray | 2012-08-24 | 4 | -1/+21 |
| | | | | | | | | Fix by Colin Su. Test by me, based on a test written by Petri Lehtinen. | ||||
* | | Output lib files for PGO build into PGO directory. | Martin v. Löwis | 2012-08-24 | 2 | -0/+3 |
| | |