summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Merge with 3.2 #12510Terry Jan Reedy2012-06-031-15/+17
|\
| * Issue 12510: Expand 2 bare excepts. Improve comments. Change deceptive nameTerry Jan Reedy2012-06-031-15/+17
| | | | | | | | | | | | 'name' to 'expression' as the latter is what the string actually represents. The bug in this issue was only catching NameError and AttributeError when evaluating an expression that was not necessarily a name.
* | Issue #14424: Document PyType_GenericAlloc, and fix the documentation of ↵Eli Bendersky2012-06-031-4/+5
| | | | | | | | PyType_GenericNew
* | Fix unterminated keyword array passed to PyArg_ParseTupleAndKeywordsEli Bendersky2012-06-031-2/+2
| |
* | Issue #14987: Add a missing import statementBrett Cannon2012-06-022-0/+3
| |
* | Merge with 3.2 #10365Terry Jan Reedy2012-06-021-16/+13
|\ \ | |/
| * Issue 10365: Add and replace comments; condense defaulted attribute access.Terry Jan Reedy2012-06-021-16/+13
| | | | | | | | Code patch by Roger Serwy.
* | #1079: Fix parsing of encoded words.R David Murray2012-06-025-19/+113
| | | | | | | | | | | | | | | | | | This is a behavior change: before this leading and trailing spaces were stripped from ASCII parts, now they are preserved. Without this fix we didn't parse the examples in the RFC correctly, so I think breaking backward compatibility here is justified. Patch by Ralf Schlatterbeck.
* | null mergeSandro Tosi2012-06-020-0/+0
|\ \ | |/
| * backport c4bd68be5fc6 to 3.2Sandro Tosi2012-06-021-1/+1
| |
* | Issue #14926: merge with 3.2Sandro Tosi2012-06-021-1/+1
|\ \ | |/
| * Issue #14926: fix docstring highlightSandro Tosi2012-06-021-1/+1
| |
* | merge with 3.2Sandro Tosi2012-06-021-8/+8
|\ \ | |/
| * refer to time.strftimeSandro Tosi2012-06-021-8/+8
| |
* | #14957: fix doc typo.R David Murray2012-06-021-1/+1
|\ \ | |/
| * #14957: fix doc typo.R David Murray2012-06-021-1/+1
| |
* | Issue #14814: use print() functionSandro Tosi2012-06-021-1/+1
| |
* | Issue #14814: minor spelling fixesSandro Tosi2012-06-021-4/+4
| |
* | merge 3.2Benjamin Peterson2012-06-011-4/+2
|\ \ | |/
| * don't leak if the __class__ closure is setBenjamin Peterson2012-06-011-4/+2
| |
* | Fix sporadic failure of test_time.test_process_time() on WindowsVictor Stinner2012-06-011-2/+5
| | | | | | | | Use a threshold of 20 ms instead of 10 ms.
* | #14957: clarify splitlines docs.R David Murray2012-06-011-1/+7
|\ \ | |/ | | | | Initial patch by Michael Driscoll, I added the example.
| * #14957: clarify splitlines docs.R David Murray2012-06-011-1/+7
| | | | | | | | Initial patch by Michael Driscoll, I added the example.
* | merge headsSandro Tosi2012-06-012-5/+12
|\ \
| * | #14814: Fix errror message creation in ipaddress.collapse_addressesHynek Schlawack2012-06-012-5/+12
| | |
* | | Issue #14968: merge with 3.2Sandro Tosi2012-06-011-1/+1
|\ \ \ | |/ / |/| / | |/
| * Issue #14968: set 'Inplace Operators' as subsection; patch by Lars BuitinckSandro Tosi2012-06-011-1/+1
| |
* | check return for errorBenjamin Peterson2012-06-011-0/+2
| |
* | Close #14969: Improve the handling of exception chaining in contextlib.ExitStackNick Coghlan2012-06-013-14/+33
| |
* | #14814: Remove 2.x's new-style classes syntax from ipaddressHynek Schlawack2012-06-011-3/+3
| |
* | word.digits are always initialized before use in the Taylor series loop,Stefan Krah2012-06-011-1/+1
| | | | | | | | but this is more readable.
* | Issue #14007: implement doctype() method calling in XMLParser of _elementtree.Eli Bendersky2012-06-014-11/+120
| | | | | | | | Includes exposing a doctype handler from expat through pyexpat.
* | We're always building _elementtree with USE_PYEXPAT_CAPI, so the #ifdefs inEli Bendersky2012-06-011-12/+2
| | | | | | | | the code are unnecessary.
* | Reformat two issue numbersBrian Curtin2012-06-011-2/+2
| |
* | fix trailing whitespaceEli Bendersky2012-06-011-1/+1
| |
* | Issue #14007: make XMLParser a real subclassable type exported from ↵Eli Bendersky2012-06-013-115/+174
| | | | | | | | _elementtree. +cleanups
* | #14814: Remove stale __hex__ method from ipaddressHynek Schlawack2012-06-011-3/+0
| | | | | | | | Obsolete 2.x method.
* | Don't use metaclasses when class decorators can do the job.R David Murray2012-05-316-67/+66
| | | | | | | | | | Thanks to Nick Coghlan for pointing out that I'd forgotten about class decorators.
* | Post-release update.Georg Brandl2012-05-312-3/+4
| |
* | VS 2010 has the AMD64 redist files in VC\redist\x64.Martin v. Löwis2012-05-311-1/+1
| |
* | Update to Tcl/Tk 8.5.11.Martin v. Löwis2012-05-311-3/+3
| |
* | Use workctx instead of ctx for cosmetic reasons. Also zero-pad the resultStefan Krah2012-05-311-1/+2
| | | | | | | | in the simple path (not correctly rounded but faster).
* | Improve Underflow handling in the correct-rounding loop. The case forStefan Krah2012-05-311-4/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Underflow to zero hasn't changed: _mpd_qexp() internally uses MIN_EMIN, so the result would also underflow to zero for all emin > MIN_EMIN. In case digits are left, the informal argument is as follows: Underflow can occur only once in the last multiplication of the power stage (in the Horner stage Underflow provably cannot occur, and if Underflow occurred twice in the power stage, the result would underflow to zero on the second occasion). Since there is no double rounding during Underflow, the effective work precision is now 1 <= result->digits < prec. It can be shown by a somewhat tedious argument that abs(result - e**x) < ulp(result, result->digits). Therefore the correct rounding loop now uses ulp(result, result->digits) to generate the bounds for e**x in case of Underflow.
* | Issue #14962: mergeNed Deily2012-05-312-0/+8
|\ \ | |/
| * Issue #14962: Update text coloring in IDLE shell window after changingNed Deily2012-05-312-0/+8
| | | | | | | | options. Patch by Roger Serwy.
* | Issue #14952: Fix incorrect output dll names for win64/debug builds, causingKristjan Valur Jonsson2012-05-311-4/+0
| | | | | | | | the dll importer on windows to fail.
* | Improve comments.Stefan Krah2012-05-311-4/+14
| |
* | Merge.Stefan Krah2012-05-313-27/+28
|\ \
| * | Close #14963: Use an iterative algorithm in contextlib.ExitStack.__exit__ ↵Nick Coghlan2012-06-013-27/+28
| | | | | | | | | | | | (Patch by Alon Horev)
* | | Pad the result with zeros just before the final rounding.Stefan Krah2012-05-311-3/+1
|/ /