summaryrefslogtreecommitdiffstats
path: root/Objects/floatobject.c
Commit message (Expand)AuthorAgeFilesLines
...
* Make the error msgs in our pow() implementations consistent.Tim Peters2001-09-051-2/+2
* Raise OverflowError when appropriate on long->float conversion. Most ofTim Peters2001-09-041-5/+6
* PEP 238 documented -Qwarn as warning only for classic int or longGuido van Rossum2001-09-041-1/+1
* New restriction on pow(x, y, z): If z is not None, x and y must be ofTim Peters2001-09-031-15/+7
* Add warning mode for classic division, almost exactly as specified inGuido van Rossum2001-08-311-1/+20
* Fix typo: double semicolons.Guido van Rossum2001-08-301-1/+1
* Make int, long and float subclassable.Guido van Rossum2001-08-291-5/+35
* float_pow: Put *all* of the burden on the libm pow in normalTim Peters2001-08-231-45/+16
* Patch #445762: Support --disable-unicodeMartin v. Löwis2001-08-171-0/+4
* Implement PEP 238 in its (almost) full glory.Guido van Rossum2001-08-081-13/+32
* Merge of descr-branch back into trunk.Tim Peters2001-08-021-16/+54
* SF bug #444510: int() should guarantee truncation.Tim Peters2001-07-261-7/+13
* SF bug #422177: Results from .pyc differs from .pyTim Peters2001-05-081-0/+6
* When 1.6 boosted the # of digits produced by repr(float), repr(complex)Tim Peters2001-03-111-1/+0
* Avoid giving prototypes on Solaris.Martin v. Löwis2001-03-061-1/+1
* SF patch 103543 from tg@freebsd.org:Jeremy Hylton2001-02-011-1/+1
* Rich comparisons fall-out:Guido van Rossum2001-01-171-14/+1
* Fix a silly bug in float_pow. Sorry Tim.Neil Schemenauer2001-01-081-1/+1
* Make float a new style number type.Neil Schemenauer2001-01-041-42/+108
* Ka-Ping Yee <ping@lfw.org>:Fred Drake2000-10-241-2/+2
* SF bug 115831 and Ping's SF patch 101751, 0.0**-2.0 returns inf rather thanTim Peters2000-10-061-28/+35
* Rationalize use of limits.h, moving the inclusion to Python.h.Fred Drake2000-09-261-30/+0
* Replace SIGFPE paranoia around strtod and atof. I don't believe theseTim Peters2000-09-251-0/+4
* Fix for SF bug 110624: float literals behave inconsistently.Tim Peters2000-09-231-16/+44
* Fixed legit gripe from c.l.py that math.fmod docs aren't confusing enough.Tim Peters2000-09-161-1/+1
* REMOVED all CWI, CNRI and BeOpen copyright markings.Guido van Rossum2000-09-011-9/+0
* PyFloat_FromString(): Move s_buffer[] up to the top-level functionBarry Warsaw2000-08-181-2/+1
* Fix for http://sourceforge.net/bugs/?func=detailbug&bug_id=111866&group_id=5470.Tim Peters2000-08-151-38/+1
* Clean up a warning on Win64. The downcast of the strlen size_tTrent Mick2000-08-121-1/+1
* merge Include/my*.h into Include/pyport.hPeter Schneider-Kamp2000-07-311-1/+0
* Remove legacy use of __SC__; no longer needed now that ANSI source isFred Drake2000-07-091-5/+0
* ANSI-fication of the sources.Fred Drake2000-07-091-70/+29
* Nuke all remaining occurrences of Py_PROTO and Py_FPROTO.Tim Peters2000-07-091-3/+3
* Change copyright notice - 2nd try.Guido van Rossum2000-06-301-6/+0
* Change copyright notice.Guido van Rossum2000-06-301-22/+7
* Trent Mick <trentm@activestate.com>:Fred Drake2000-06-301-2/+2
* This patch addresses two main issues: (1) There exist some non-fatalFred Drake2000-06-291-10/+11
* Vladimir Marangozov's long-awaited malloc restructuring.Guido van Rossum2000-05-031-8/+6
* Marc-Andre's third try at this bulk patch seems to work (except thatGuido van Rossum2000-04-051-0/+16
* Many changes for Unicode, by Marc-Andre Lemburg.Guido van Rossum2000-03-101-8/+15
* The rest of the changes by Trent Mick and Dale Nagata for warning-freeGuido van Rossum2000-01-201-1/+1
* Implement the other easy thing: repr() of a float now uses %.17g,Guido van Rossum1999-12-231-6/+43
* Mainlining the string_methods branch. See branch revision logBarry Warsaw1999-10-121-0/+51
* Tim Peters writes:Guido van Rossum1999-05-061-7/+19
* Fix a problem with Vladimir's PyFloat_Fini code: clear the free list; ifGuido van Rossum1999-03-191-5/+17
* Vladimir has restructured his code somewhat so that the blocks are nowGuido van Rossum1999-03-121-25/+50
* OK, try again. Vladimir gave me a fix for the alignment bus error,Guido van Rossum1999-03-121-7/+56
* Alas, Vladimir's patch caused a bus error (probably doubleGuido van Rossum1999-03-111-56/+7
* Patch by Vladimir Marangoz to allow freeing of the allocated blocks ofGuido van Rossum1999-03-101-7/+56
* Hack suggested by Matthias Klose to pull in all relevant entry pointsGuido van Rossum1997-10-311-0/+10