Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Do not clobber existing flags. | Stefan Krah | 2012-05-31 | 1 | -1/+1 |
| | |||||
* | Issue #14909: A number of places were using PyMem_Realloc() apis and | Kristjan Valur Jonsson | 2012-05-31 | 3 | -7/+12 |
| | | | | | PyObject_GC_Resize() with incorrect error handling. In case of errors, the original object would be leaked. This checkin fixes those cases. | ||||
* | Issue #14007: implemented the 'element_factory' feature of TreeBuilder in | Eli Bendersky | 2012-05-30 | 1 | -30/+73 |
| | | | | _elementtree, with a test. | ||||
* | Issue #14007: make TreeBuilder an actual type exposed from _elementtree, and ↵ | Eli Bendersky | 2012-05-29 | 1 | -74/+77 |
| | | | | subclassable. | ||||
* | Issue 14814: Add namespaces keyword arg to find(*) methods in _elementtree. | Eli Bendersky | 2012-05-29 | 1 | -21/+84 |
| | | | | | Add attrib keyword to Element and SubElement in _elementtree. Patch developed with Ezio Melotti. | ||||
* | Issue #14775: Fix a potential quadratic dict build-up due to the garbage ↵ | Antoine Pitrou | 2012-05-28 | 1 | -3/+57 |
|\ | | | | | | | | | | | collector repeatedly trying to untrack dicts. Additional comments by Tim Silk. | ||||
| * | Issue #14775: Fix a potential quadratic dict build-up due to the garbage ↵ | Antoine Pitrou | 2012-05-28 | 1 | -3/+57 |
| | | | | | | | | | | | | collector repeatedly trying to untrack dicts. Additional comments by Tim Silk. | ||||
* | | Issue #9041: raised exception is misleading | Meador Inge | 2012-05-28 | 1 | -25/+5 |
|\ \ | |/ | | | | | | | | | An issue in ctypes.c_longdouble, ctypes.c_double, and ctypes.c_float that caused an incorrect exception to be returned in the case of overflow has been fixed. | ||||
| * | Issue #9041: raised exception is misleading | Meador Inge | 2012-05-28 | 1 | -25/+5 |
| | | | | | | | | | | | | An issue in ctypes.c_longdouble, ctypes.c_double, and ctypes.c_float that caused an incorrect exception to be returned in the case of overflow has been fixed. | ||||
* | | Make multiprocessing's shared memory use memoryview instead of raw pointer | Richard Oudkerk | 2012-05-26 | 1 | -17/+0 |
| | | |||||
* | | Implemented PEP 405 (Python virtual environments). | Vinay Sajip | 2012-05-26 | 1 | -0/+86 |
| | | |||||
* | | capitialize utime statuses | Benjamin Peterson | 2012-05-25 | 1 | -20/+20 |
| | | |||||
* | | capitialize enum members | Benjamin Peterson | 2012-05-25 | 1 | -17/+17 |
| | | |||||
* | | #4841: Fix FileIO constructor to honor closefd when called repeatedly | Hynek Schlawack | 2012-05-25 | 1 | -3/+7 |
|\ \ | |/ | | | | | Patch by Victor Stinner. | ||||
| * | #4841: Fix FileIO constructor to honor closefd when called repeatedly | Hynek Schlawack | 2012-05-25 | 1 | -3/+7 |
| | | | | | | | | Patch by Victor Stinner. | ||||
* | | use PyDict_Contains | Benjamin Peterson | 2012-05-25 | 1 | -3/+3 |
| | | |||||
* | | return NULL on error | Benjamin Peterson | 2012-05-25 | 1 | -2/+3 |
| | | |||||
* | | actually return the result | Benjamin Peterson | 2012-05-25 | 1 | -1/+1 |
| | | |||||
* | | simplify and rewrite the zipimport part of 702009f3c0b1 a bit | Benjamin Peterson | 2012-05-25 | 1 | -51/+41 |
| | | |||||
* | | plug ref leak | Benjamin Peterson | 2012-05-25 | 1 | -0/+1 |
| | | |||||
* | | issue 14660: Implement PEP 420, namespace packages. | Eric V. Smith | 2012-05-25 | 1 | -8/+140 |
| | | |||||
* | | Issue #14849: setup Element data members to be assignable in subclasses | Eli Bendersky | 2012-05-20 | 1 | -13/+12 |
| | | |||||
* | | Issue #14779: Get sizeof(void *) directly rather than relying on sysconfig. | Stefan Krah | 2012-05-16 | 1 | -0/+7 |
| | | |||||
* | | Fix Visual Studio warning. | Stefan Krah | 2012-05-16 | 1 | -1/+1 |
| | | |||||
* | | Changes in _mpd_qexp(): | Stefan Krah | 2012-05-16 | 1 | -46/+117 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ----------------------- 1) Reduce the number of iterations in the Horner scheme for operands with a negative adjusted exponent. Previously the number was overestimated quite generously. 2) The function _mpd_get_exp_iterations() now has an ACL2 proof and is rewritten accordingly. 3) The proof relies on abs(op) > 9 * 10**(-prec-1), so operands without that property are now handled by the new function _mpd_qexp_check_one(). 4) The error analysis for the evaluation of the truncated Taylor series in Hull&Abrham's paper relies on the fact that the reduced operand 'r' has fewer than context.prec digits. Since the operands may have more than context.prec digits, a new ACL2 proof covers the case that r.digits > context.prec. To facilitate the proof, the Horner step now uses fma instead of rounding twice in multiply/add. Changes in mpd_qexp(): ---------------------- 1) Fix a bound in the correct rounding loop that was too optimistic. In practice results were always correctly rounded, because it is unlikely that the error in _mpd_qexp() ever reaches the theoretical maximum. | ||||
* | | Issue #14829: Fix bisect and range() indexing with large indices (>= 2 ** ↵ | Antoine Pitrou | 2012-05-16 | 1 | -2/+2 |
|\ \ | |/ | | | | | | | | | 32) under 64-bit Windows. (untested, because of Windows build issues under 3.x) | ||||
| * | Issue #14829: Fix bisect and range() indexing with large indices (>= 2 ** ↵ | Antoine Pitrou | 2012-05-16 | 1 | -1/+2 |
| | | | | | | | | 32) under 64-bit Windows. | ||||
* | | Issue #14732: The _csv module now uses PEP 3121 module initialization. | Antoine Pitrou | 2012-05-16 | 1 | -35/+70 |
| | | | | | | | | Patch by Robin Schreiber. | ||||
* | | Add safecase to silence Win64 warning. | Martin v. Löwis | 2012-05-15 | 1 | -1/+2 |
| | | |||||
* | | Silence VS 2010 warning on loss of precision (_int64 -> _int32). | Martin v. Löwis | 2012-05-15 | 1 | -1/+1 |
| | | | | | | | | This is safe because the actual value is already range-checked. | ||||
* | | Fix #13210. Port the Windows build from VS2008 to VS2010. | Brian Curtin | 2012-05-13 | 1 | -0/+27 |
| | | |||||
* | | Remove uninitialized compiler warning. | Ross Lagerwall | 2012-05-12 | 1 | -1/+5 |
| | | |||||
* | | Issue #14741: Merge fix from 3.2. | Mark Dickinson | 2012-05-07 | 1 | -5/+1 |
|\ \ | |/ | |||||
| * | Issue #14741: Fix missing support for ellipsis in parser module. | Mark Dickinson | 2012-05-07 | 1 | -5/+1 |
| | | |||||
* | | Issue #14697: Merge fix from 3.2. | Mark Dickinson | 2012-05-07 | 1 | -21/+79 |
|\ \ | |/ | |||||
| * | Issue #14697: Fix missing parser module support for set displays and set ↵ | Mark Dickinson | 2012-05-07 | 1 | -21/+79 |
| | | | | | | | | comprehensions. | ||||
* | | Issue #14701: Merge fix from 3.2. | Mark Dickinson | 2012-05-07 | 1 | -12/+11 |
|\ \ | |/ | |||||
| * | Issue #14701: Add missing support for 'raise ... from' in parser module. | Mark Dickinson | 2012-05-07 | 1 | -12/+11 |
| | | |||||
| * | Fix for issue 14725 for 3.2 branch | Richard Oudkerk | 2012-05-05 | 1 | -0/+1 |
| | | |||||
* | | Fix buildbot failures in test_lzma. | Nadeem Vawda | 2012-05-06 | 1 | -7/+6 |
| | | |||||
* | | Rename lzma.check_is_supported() to is_check_supported() to avoid ↵ | Nadeem Vawda | 2012-05-06 | 1 | -6/+6 |
| | | | | | | | | grammatical confusion. | ||||
* | | Add lzma.{encode,decode}_filter_properties(). | Nadeem Vawda | 2012-05-06 | 1 | -4/+182 |
| | | |||||
* | | Fix formatting of preset values for exception messages in _lzmamodule.c. | Nadeem Vawda | 2012-05-06 | 1 | -2/+2 |
| | | |||||
* | | Backed out changeset 709850f1ec67 | Benjamin Peterson | 2012-05-06 | 1 | -333/+31 |
| | | |||||
* | | Update Misc/NEWS for issues #14127 and #14705. (And, technically, #10148.) | Larry Hastings | 2012-05-06 | 1 | -31/+333 |
| | | |||||
* | | Issue #14705: Add 'p' format character to PyArg_ParseTuple* for bool support. | Larry Hastings | 2012-05-05 | 1 | -0/+10 |
| | | |||||
* | | Fix typo in exception message. | Stefan Krah | 2012-05-05 | 1 | -1/+1 |
| | | |||||
* | | Fix for Issue 14725 for 3.3 branch. | Richard Oudkerk | 2012-05-05 | 1 | -3/+1 |
| | | |||||
* | | initialization not needed | Benjamin Peterson | 2012-05-04 | 1 | -1/+1 |
| | | |||||
* | | Fix for fatal errors in os.*utime*() | Richard Oudkerk | 2012-05-04 | 1 | -1/+1 |
| | | | | | | | | The address of an object was being decreffed instead of the object. |