summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* 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
|\ \ | |/
| * Fix #14943. Update the proper default value and list the proper argument ↵Brian Curtin2012-05-291-3/+3
| | | | | | | | names in the explanation.
* | Reapplied skip logic for test on Windows, which appears to have been lost ↵Vinay Sajip2012-05-291-0/+1
| | | | | | | | during a merge.
* | Updated test to reflect renamed file.Vinay Sajip2012-05-291-1/+1
| |
* | Issue #10997: merge from 3.2Ned Deily2012-05-292-1/+3
|\ \ | |/
| * Issue #10997: Prevent a duplicate entry in IDLE's "Recent Files" menu.Ned Deily2012-05-292-1/+3
| |
* | #14796: improve calendar test coverage.R David Murray2012-05-291-9/+211
| | | | | | | | Patch by Oleg Plakhotnyuk.
* | Issue #14744: Fix compilation on Windows (part 2)Victor Stinner2012-05-291-1/+1
| |
* | Issue #14744: Fix compilation on WindowsVictor Stinner2012-05-291-2/+2
| |
* | #10839: add new test file that was omitted from checkinR David Murray2012-05-291-0/+18
| |
* | #10839: raise an error on add of duplicate unique headers in new email policiesR David Murray2012-05-294-0/+62
| | | | | | | | | | | | | | | | | | | | | | This feature was supposed to be part of the initial email6 checkin, but it got lost in my big refactoring. In this patch I'm not providing an easy way to turn off the errors, but they only happen when a header is added programmatically, and it is almost never the right thing to do to allow the duplicate to be added. An application that needs to add duplicates of unique headers can create a policy subclass to allow it.
* | merge headsEli Bendersky2012-05-293-6/+71
|\ \
| * \ Merged upstream changes.Vinay Sajip2012-05-2917-453/+893
| |\ \
| * | | Added pyvenv docs to 'Python Setup and Usage' section.Vinay Sajip2012-05-293-6/+71
| | | |
* | | | Issue #14007: make TreeBuilder an actual type exposed from _elementtree, and ↵Eli Bendersky2012-05-292-74/+91
| |/ / |/| | | | | | | | subclassable.
* | | Issue #14744: Use the new _PyUnicodeWriter internal API to speed up str%args ↵Victor Stinner2012-05-2912-434/+875
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | and str.format(args) * Formatting string, int, float and complex use the _PyUnicodeWriter API. It avoids a temporary buffer in most cases. * Add _PyUnicodeWriter_WriteStr() to restore the PyAccu optimization: just keep a reference to the string if the output is only composed of one string * Disable overallocation when formatting the last argument of str%args and str.format(args) * Overallocation allocates at least 100 characters: add min_length attribute to the _PyUnicodeWriter structure * Add new private functions: _PyUnicode_FastCopyCharacters(), _PyUnicode_FastFill() and _PyUnicode_FromASCII() The speed up is around 20% in average.
* | | PyArg_Parse*("U"): ensure that the Unicode string is readyVictor Stinner2012-05-291-1/+4
| | |
* | | Use Python 3.x-style keyword only arg in Array()Richard Oudkerk2012-05-293-12/+9
| | | | | | | | | | | | | | | | | | Previously a Python 2.x compatible hack was used for multiprocessing.sharedctypes.Array(). Also the documented signature was wrong.
* | | Remove __getslice__, __setslice__, __delslice__ methods from proxiesRichard Oudkerk2012-05-291-6/+5
|/ / | | | | | | Proxy classes in multiprocessing do not need these methods in Python 3.x.