summaryrefslogtreecommitdiffstats
path: root/Objects/floatobject.c
Commit message (Expand)AuthorAgeFilesLines
* Enable GC for new-style instances. This touches lots of files, sinceGuido van Rossum2001-10-051-2/+6
* Add additional coercion support for "self subtypes" to int, long,Guido van Rossum2001-09-191-0/+5
* Again perhaps the end of [#460020] bug or feature: unicode() and subclasses.Tim Peters2001-09-121-1/+1
* More bug 460020: when F is a subclass of float, disable the unary plusTim Peters2001-09-111-2/+6
* Replace a few places where X->ob_type was compared to &PyXXX_Type withGuido van Rossum2001-09-111-3/+3
* Better error msg for 3-arg pow with a float argument.Tim Peters2001-09-051-1/+1
* Rework the way we try to check for libm overflow, given that C99 no longerTim Peters2001-09-051-16/+1
* 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