summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* merge 3.2 (#15801)Benjamin Peterson2012-08-283-2/+7
|\
| * use the stricter PyMapping_Check (closes #15801)Benjamin Peterson2012-08-283-2/+7
| |
* | Issue #15794: Relax a test case due to the deadlock detection's ↵Antoine Pitrou2012-08-281-4/+18
| | | | | | | | conservativeness.
* | - fix paste error (whitespace) from previous commitMatthias Klose2012-08-281-1/+1
|\ \ | |/
| * - fix paste error (whitespace) from previous commitMatthias Klose2012-08-281-1/+1
| |
* | - Issue #15591: Fix parsing MAKEFLAGS in the sharedmods target.Matthias Klose2012-08-281-1/+6
|\ \ | |/
| * - Issue #15591: Fix parsing MAKEFLAGS in the sharedmods target.Matthias Klose2012-08-281-4/+8
| |
* | #11964: Document a change in v3.2 to the json indent parameterPetri Lehtinen2012-08-282-4/+42
|\ \ | |/
| * #11964: Document a change in v3.2 to the json indent parameterPetri Lehtinen2012-08-282-4/+15
| |
* | Issue #15781: Fix two small race conditions in import's module locking.Antoine Pitrou2012-08-275-3635/+3659
| |
* | Merge: Fix a JSON doc typoPetri Lehtinen2012-08-271-1/+1
|\ \ | |/
| * Fix a JSON doc typoPetri Lehtinen2012-08-271-1/+1
| |
* | #15788: merge with 3.2.Ezio Melotti2012-08-271-2/+2
|\ \ | |/
| * #15788: fix broken links in subprocess doc. Patch by Chris Rebert.Ezio Melotti2012-08-271-2/+2
| |
* | Fix typo.Ezio Melotti2012-08-261-1/+1
| |
* | Merge in changes from 3.3.0 release clone.Georg Brandl2012-08-259-18/+32
|\ \
| * | Post-release updates.Georg Brandl2012-08-252-1/+13
| | |
| * | Added tag v3.3.0rc1 for changeset 8bb5c7bc46baGeorg Brandl2012-08-251-0/+1
| | |
| * | Bump to 3.3.0rc1.v3.3.0rc1Georg Brandl2012-08-256-9/+9
| | |
| * | Update pydoc topics and suspicious markup file.Georg Brandl2012-08-252-9/+10
| | |
* | | Delete Misc/NEWS record for reverted #15776.Andrew Svetlov2012-08-251-2/+0
|/ /
* | Fix issue 13370: Ensure that ctypes works on Mac OS X when Python isRonald Oussoren2012-08-255-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 Oussoren2012-08-255-7/+128
| | | | | | | | compiled using the clang compiler
* | merge with 3.2Georg Brandl2012-08-251-1/+1
|\ \ | |/
| * Fix wrong way of adding Error information in shutil.copytree.Georg Brandl2012-08-251-1/+1
| |
* | Close #15573: use value-based memoryview comparisons (patch by Stefan Krah)Nick Coghlan2012-08-255-133/+779
| |
* | Update various OS X README files for 3.3.0.Ned Deily2012-08-254-59/+163
| |
* | Issue #15316: Let exceptions raised during imports triggered by theBrett Cannon2012-08-244-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.2Mark Dickinson2012-08-240-0/+0
|\ \ | |/
| * Remove overeager test (don't depend on the sign of a nan; cf. issue #14521)Mark Dickinson2012-08-241-4/+0
| |
* | Reverted change to venv initialisation.Vinay Sajip2012-08-241-9/+1
| |
* | Null mergeMark Dickinson2012-08-240-0/+0
|\ \ | |/
| * Remove incorrect lines (meant for cdecimal) from recently added Decimal tests.Mark Dickinson2012-08-241-2/+0
| |
* | Null merge from 3.2.Mark Dickinson2012-08-240-0/+0
|\ \ | |/
| * Issue #15544: Fix Decimal.__float__ to work with payload-carrying NaNs.Mark Dickinson2012-08-243-1/+25
| |
* | Issue #13072: The array module's 'u' format code is now deprecated andStefan Krah2012-08-243-1/+16
| | | | | | | | will be removed in Python 4.0.
* | MergeAntoine Pitrou2012-08-244-2/+42
|\ \
| * | Issue #15544: Fix Decimal.__float__ to work with payload-carrying NaNs.Mark Dickinson2012-08-244-2/+42
| | |
* | | Add glossary referencesAntoine Pitrou2012-08-241-3/+3
|\ \ \ | |/ / |/| / | |/
| * Add glossary referencesAntoine Pitrou2012-08-241-3/+3
| |
* | MergeAntoine Pitrou2012-08-242-1880/+1875
|\ \
| * | Issue #2051: Tweak last commit for this issue to pass in mode insteadBrett Cannon2012-08-242-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 Pitrou2012-08-242-6/+114
|\ \ \ | |/ / |/| / | |/ Patch by Chris Rebert.
| * Issue #14674: Add a discussion of the json module's standard compliance.Antoine Pitrou2012-08-242-6/+114
| | | | | | | | Patch by Chris Rebert.
* | Issue #15778: Coerce ImportError.args to a string when it isn'tBrett Cannon2012-08-243-1/+9
| | | | | | | | | | | | already one. Patch by Dave Malcolm.
* | Closes #9374: merge with 3.2Georg Brandl2012-08-241-0/+10
|\ \ | |/
| * Closes #9374: add back now-unused module attributes; removing them is a ↵Georg Brandl2012-08-241-0/+10
| | | | | | | | backward compatibility issue, since they have a public-seeming name.
* | Issue #15776: Allow pyvenv to work in existing directory with --clean.Andrew Svetlov2012-08-242-1/+11
| | | | | | | | Patch by Vinay Sajip.
* | Merge #15249: Mangle From lines correctly when body contains invalid bytes.R David Murray2012-08-244-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 Murray2012-08-244-1/+21
| | | | | | | | Fix by Colin Su. Test by me, based on a test written by Petri Lehtinen.