summaryrefslogtreecommitdiff
path: root/Objects/floatobject.c
Commit message (Expand)AuthorAgeFilesLines
...
* | Issue #13088: Add shared Py_hexdigits constant to format a number into base 16Victor Stinner2011-10-141-1/+1
* | Implement PEP 393.Martin v. Löwis2011-09-281-15/+4
* | Replace Py_NotImplemented returns with the macro form Py_RETURN_NOTIMPLEMENTED.Brian Curtin2011-08-101-2/+1
* | Issue #11495: OSF support is eliminated. It was deprecated in Python 3.2Jesus Cea2011-03-141-5/+0
* | Issue #8914: fix various warnings from the Clang static analyzer v254.Brett Cannon2011-02-221-2/+1
|/
* Use copysign to produce appropriately signed zeros instead of trying to worm ...Mark Dickinson2010-12-041-12/+5
* Issue #10596: Fix float.__mod__ to have the same behaviour asMark Dickinson2010-12-041-4/+14
* Remove some unecessary '#ifdef Py_NAN's from floatobject.cMark Dickinson2010-12-041-6/+0
* Issue #10557: Fixed error messages from float() and other numericAlexander Belopolsky2010-12-041-26/+32
* Include structseq.h in Python.h, and remove now-redundant includes in individ...Georg Brandl2010-11-301-1/+0
* make hashes always the size of pointers; introduce Py_hash_t #9778Benjamin Peterson2010-10-171-1/+1
* Issue #9337: Make float.__str__ identical to float.__repr__.Mark Dickinson2010-08-041-17/+5
* Style nit.Mark Dickinson2010-07-061-1/+1
* Merged revisions 82447 via svnmerge fromBenjamin Peterson2010-07-021-1/+1
* Issue #9089: Remove references to intobject.c and intobject.h from comments.Mark Dickinson2010-06-271-1/+16
* Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-1900/+1900
* Merged revisions 78319 via svnmerge fromEzio Melotti2010-02-221-1/+1
* Merged revisions 77139-77140 via svnmerge fromMark Dickinson2009-12-301-23/+74
* Merged revisions 76561 via svnmerge fromMark Dickinson2009-11-281-4/+0
* Fix extra-long line; also makes py3k match trunk here.Mark Dickinson2009-10-261-1/+1
* Merged revisions 73376,73393,73398,73400,73404-73405,73409,73419-73421,73432,...Benjamin Peterson2009-06-281-2/+2
* Refactor to remove duplicated nan/inf parsing code inMark Dickinson2009-05-201-36/+13
* Merged revisions 72564 via svnmerge fromMark Dickinson2009-05-111-16/+36
* Issue #5920: Changed format.__float__ and complex.__float__ to use a precisio...Eric Smith2009-05-051-4/+5
* Merged revisions 72253 via svnmerge fromMark Dickinson2009-05-031-6/+6
* Issue #5914: Add new C-API function PyOS_string_to_double, to complementMark Dickinson2009-05-031-26/+10
* Internal plumbing changes for float parsing:Mark Dickinson2009-04-261-57/+21
* Revert accidental changes to Objects/floatobject.cMark Dickinson2009-04-181-10/+4
* The SSE2 detection and enabling could potentially causeMark Dickinson2009-04-181-4/+10
* Issue #1869 (and 4707, 5118, 5473, 1456775): use the newMark Dickinson2009-04-181-24/+142
* The other half of Issue #1580: use short float repr where possible.Eric Smith2009-04-161-114/+31
* Merged revisions 71627 via svnmerge fromBenjamin Peterson2009-04-151-1/+3
* Issue #1717: rename tp_compare to tp_reserved. I'll change theMark Dickinson2009-02-021-1/+1
* Remove attempted long->int conversions in py3k version of float.as_integer_ra...Mark Dickinson2009-01-171-6/+0
* Issue #4910, patch 3/3: rename nb_long to nb_reservedMark Dickinson2009-01-171-1/+1
* Issue 4910, patch 2 of (probably) 3: pave the way for renaming ofMark Dickinson2009-01-151-1/+1
* Add missing Py_CHARMASK when calling isspace().Kristján Valur Jónsson2008-12-181-2/+2
* merge from trunkBenjamin Peterson2008-10-111-2/+2
* Merged revisions 66552-66553 via svnmerge fromAndrew MacIntyre2008-09-221-3/+3
* Merged revisions 65964 via svnmerge fromMark Dickinson2008-08-211-5/+4
* fix cut and paste error in a commentGregory P. Smith2008-08-181-1/+1
* Rename PyUnicode_AsString -> _PyUnicode_AsString andMarc-André Lemburg2008-08-071-2/+2
* Issue #3369: fix memory leak in floatobject.c. Thanks Kristján JónssonMark Dickinson2008-07-211-0/+6
* Merged revisions 64722,64729,64753,64845-64846,64849,64871,64880-64882,64885,...Georg Brandl2008-07-161-26/+20
* Merged revisions 64974 via svnmerge fromMark Dickinson2008-07-161-0/+408
* Revert 64451.Raymond Hettinger2008-06-241-30/+0
* Merge 64438: hex/oct/bin can show floats exactly.Raymond Hettinger2008-06-221-0/+30
* Remove nb_reserved (nb_coerce), nb_hex, and nb_oct from PyNumberMethodsBenjamin Peterson2008-06-111-3/+0
* Refactor and clean up str.format() code (and helpers) in advance of optimizat...Eric Smith2008-05-301-6/+7
* Issue 2801: fix bug in float.is_integer where ValueError was incorrectlyMark Dickinson2008-05-091-0/+1