summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | 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-021-4/+2
|\ \ | |/
| * don't leak if the __class__ closure is setBenjamin Peterson2012-06-021-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-05-311-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-05-313-27/+28
| | | | | | | | | | | | (Patch by Alon Horev)
* | | Pad the result with zeros just before the final rounding.Stefan Krah2012-05-311-3/+1
|/ /
* | Issue #14963: Added test cases for contextlib.ExitStack exception handling ↵Nick Coghlan2012-05-313-0/+101
| | | | | | | | behaviour (Initial patch by Alon Horev)
* | Do not clobber existing flags.Stefan Krah2012-05-311-1/+1
| |
* | Typo fixNick Coghlan2012-05-311-1/+1
| |
* | Additional ExitStack examples, and a few other cleanups for the ExitStack docsNick Coghlan2012-05-311-7/+75
| |
* | Null merge from 3.2.Vinay Sajip2012-05-310-0/+0
|\ \ | |/
| * Added test skip under Windows, as not applicable there.Vinay Sajip2012-05-311-0/+1
| |
* | Issue #14909: A number of places were using PyMem_Realloc() apis andKristjan Valur Jonsson2012-05-315-11/+20
| | | | | | | | | | PyObject_GC_Resize() with incorrect error handling. In case of errors, the original object would be leaked. This checkin fixes those cases.
* | Make parameterized tests in email less hackish.R David Murray2012-05-314-93/+122
| | | | | | | | | | Or perhaps more hackish, depending on your perspective. But at least this way it is now possible to run the individual tests using the unittest CLI.