| Commit message (Expand) | Author | Age | Files | Lines |
* | Silence expression result unused warnings with clang. | Christian Heimes | 2013-12-04 | 1 | -1/+1 |
|
|
* | Issue #3158: doctest can now find doctests in functions and methods | Zachary Ware | 2013-11-24 | 1 | -1/+1 |
|
|
* | #17080: improve error message of float/complex when the wrong type is passed. | Ezio Melotti | 2013-11-07 | 1 | -2/+3 |
|
|
* | #19069: merge with 3.3. | Ezio Melotti | 2013-10-05 | 1 | -11/+11 |
|\ |
|
| * | #19069: use imperative mood in float object docstrings. Patch by Marco Buttu. | Ezio Melotti | 2013-10-05 | 1 | -11/+11 |
|
|
* | | Issue #18783: Removed existing mentions of Python long type in docstrings, | Serhiy Storchaka | 2013-08-27 | 1 | -4/+4 |
|\ \
| |/ |
|
| * | Issue #18783: Removed existing mentions of Python long type in docstrings, | Serhiy Storchaka | 2013-08-27 | 1 | -4/+4 |
|
|
* | | Issue #18722: Remove uses of the "register" keyword in C code. | Antoine Pitrou | 2013-08-13 | 1 | -2/+2 |
|
|
* | | Issue #18520: Add a new PyStructSequence_InitType2() function, same than | Victor Stinner | 2013-07-22 | 1 | -3/+6 |
|
|
* | | Reuse Py_MIN and Py_MAX macros: remove duplicate MIN/MAX macros | Victor Stinner | 2013-06-04 | 1 | -9/+4 |
|
|
* | | Close #17694: Add minimum length to _PyUnicodeWriter | Victor Stinner | 2013-04-17 | 1 | -1/+1 |
|/ |
|
* | Fix a few typos and a double semicolon. Patch by Eitan Adler. | Ezio Melotti | 2013-01-27 | 1 | -1/+1 |
|
|
* | Issue #14785: Add sys._debugmallocstats() to help debug low-level memory allo... | David Malcolm | 2012-06-22 | 1 | -0/+10 |
|
|
* | Issue #14744: Use the new _PyUnicodeWriter internal API to speed up str%args ... | Victor Stinner | 2012-05-29 | 1 | -7/+20 |
|
|
* | Issue #14435: Remove special block allocation code from floatobject.c | Kristján Valur Jónsson | 2012-03-30 | 1 | -131/+27 |
|
|
* | Merge 3.2 -> default (issue 13889) | Mark Dickinson | 2012-01-27 | 1 | -0/+5 |
|\ |
|
| * | Issue #13889: Add missing _Py_SET_53BIT_PRECISION_* calls around uses of dtoa... | Mark Dickinson | 2012-01-27 | 1 | -0/+5 |
|
|
* | | Issue #13088: Add shared Py_hexdigits constant to format a number into base 16 | Victor Stinner | 2011-10-14 | 1 | -1/+1 |
|
|
* | | Implement PEP 393. | Martin v. Löwis | 2011-09-28 | 1 | -15/+4 |
|
|
* | | Replace Py_NotImplemented returns with the macro form Py_RETURN_NOTIMPLEMENTED. | Brian Curtin | 2011-08-11 | 1 | -2/+1 |
|
|
* | | Issue #11495: OSF support is eliminated. It was deprecated in Python 3.2 | Jesus Cea | 2011-03-14 | 1 | -5/+0 |
|
|
* | | Issue #8914: fix various warnings from the Clang static analyzer v254. | Brett Cannon | 2011-02-22 | 1 | -2/+1 |
|/ |
|
* | Use copysign to produce appropriately signed zeros instead of trying to worm ... | Mark Dickinson | 2010-12-04 | 1 | -12/+5 |
|
|
* | Issue #10596: Fix float.__mod__ to have the same behaviour as | Mark Dickinson | 2010-12-04 | 1 | -4/+14 |
|
|
* | Remove some unecessary '#ifdef Py_NAN's from floatobject.c | Mark Dickinson | 2010-12-04 | 1 | -6/+0 |
|
|
* | Issue #10557: Fixed error messages from float() and other numeric | Alexander Belopolsky | 2010-12-04 | 1 | -26/+32 |
|
|
* | Include structseq.h in Python.h, and remove now-redundant includes in individ... | Georg Brandl | 2010-11-30 | 1 | -1/+0 |
|
|
* | make hashes always the size of pointers; introduce Py_hash_t #9778 | Benjamin Peterson | 2010-10-17 | 1 | -1/+1 |
|
|
* | Issue #9337: Make float.__str__ identical to float.__repr__. | Mark Dickinson | 2010-08-04 | 1 | -17/+5 |
|
|
* | Style nit. | Mark Dickinson | 2010-07-06 | 1 | -1/+1 |
|
|
* | Merged revisions 82447 via svnmerge from | Benjamin Peterson | 2010-07-02 | 1 | -1/+1 |
|
|
* | Issue #9089: Remove references to intobject.c and intobject.h from comments. | Mark Dickinson | 2010-06-27 | 1 | -1/+16 |
|
|
* | Recorded merge of revisions 81029 via svnmerge from | Antoine Pitrou | 2010-05-09 | 1 | -1900/+1900 |
|
|
* | Merged revisions 78319 via svnmerge from | Ezio Melotti | 2010-02-22 | 1 | -1/+1 |
|
|
* | Merged revisions 77139-77140 via svnmerge from | Mark Dickinson | 2009-12-30 | 1 | -23/+74 |
|
|
* | Merged revisions 76561 via svnmerge from | Mark Dickinson | 2009-11-28 | 1 | -4/+0 |
|
|
* | Fix extra-long line; also makes py3k match trunk here. | Mark Dickinson | 2009-10-26 | 1 | -1/+1 |
|
|
* | Merged revisions 73376,73393,73398,73400,73404-73405,73409,73419-73421,73432,... | Benjamin Peterson | 2009-06-28 | 1 | -2/+2 |
|
|
* | Refactor to remove duplicated nan/inf parsing code in | Mark Dickinson | 2009-05-20 | 1 | -36/+13 |
|
|
* | Merged revisions 72564 via svnmerge from | Mark Dickinson | 2009-05-11 | 1 | -16/+36 |
|
|
* | Issue #5920: Changed format.__float__ and complex.__float__ to use a precisio... | Eric Smith | 2009-05-05 | 1 | -4/+5 |
|
|
* | Merged revisions 72253 via svnmerge from | Mark Dickinson | 2009-05-03 | 1 | -6/+6 |
|
|
* | Issue #5914: Add new C-API function PyOS_string_to_double, to complement | Mark Dickinson | 2009-05-03 | 1 | -26/+10 |
|
|
* | Internal plumbing changes for float parsing: | Mark Dickinson | 2009-04-26 | 1 | -57/+21 |
|
|
* | Revert accidental changes to Objects/floatobject.c | Mark Dickinson | 2009-04-18 | 1 | -10/+4 |
|
|
* | The SSE2 detection and enabling could potentially cause | Mark Dickinson | 2009-04-18 | 1 | -4/+10 |
|
|
* | Issue #1869 (and 4707, 5118, 5473, 1456775): use the new | Mark Dickinson | 2009-04-18 | 1 | -24/+142 |
|
|
* | The other half of Issue #1580: use short float repr where possible. | Eric Smith | 2009-04-16 | 1 | -114/+31 |
|
|
* | Merged revisions 71627 via svnmerge from | Benjamin Peterson | 2009-04-15 | 1 | -1/+3 |
|
|
* | Issue #1717: rename tp_compare to tp_reserved. I'll change the | Mark Dickinson | 2009-02-02 | 1 | -1/+1 |
|
|