summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* 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.
* | Merge heads.Georg Brandl2012-05-303-37/+90
|\ \
| * | Issue #14007: implemented the 'element_factory' feature of TreeBuilder inEli Bendersky2012-05-303-37/+90
| | | | | | | | | | | | _elementtree, with a test.
* | | Added tag v3.3.0a4 for changeset 7c51388a3aa7Georg Brandl2012-05-301-0/+1
| | |
* | | Bump version to 3.3.0a4.v3.3.0a4Georg Brandl2012-05-306-7/+7
| | |
* | | Update pydoc topics and fix new suspicious markup.Georg Brandl2012-05-306-15/+47
|/ /
* | Close #14947: add missing cross-reference to Language Definition from the ↵Nick Coghlan2012-05-301-13/+18
| | | | | | | | new dynamic type creation functions. Also cleaned up the general wording of the docs
* | #14796: fix failure of new calendar test on windows.R David Murray2012-05-301-2/+3
| |
* | Close #14690: Use monotonic clock instead of system clock in the sched,Victor Stinner2012-05-304-8/+23
| | | | | | | | subprocess and trace modules.
* | Issue #14958: Change IDLE systax highlighting to recognize all string andNed Deily2012-05-302-4/+8
| | | | | | | | byte literals supported in Python 3.3.
* | Merge 3.2 news itemBrian Curtin2012-05-291-0/+2
|\ \ | |/
| * Add news item for #14943Brian Curtin2012-05-291-0/+3
| |
* | Fix #14943. Merge 3.2Brian Curtin2012-05-291-3/+3
|\ \ | |/