summaryrefslogtreecommitdiffstats
path: root/Objects/floatobject.c
Commit message (Expand)AuthorAgeFilesLines
* staticforward bites the dust.Jeremy Hylton2002-07-171-1/+1
* Patch #568124: Add doc string macros.Martin v. Löwis2002-06-131-2/+2
* clarify message when raising TypeError to indicate that float() acceptsSkip Montanaro2002-05-021-1/+1
* SF bug 525705: [2.2] underflow raise OverflowException.Tim Peters2002-03-091-2/+2
* float_floor_div: An expression like 3.//1j crashed the interpreter, orTim Peters2001-12-111-9/+12
* float_int_div(): For clarity, move this closer to the other floatTim Peters2001-12-111-16/+16
* PyFloat_AsStringEx(): This function takes an output char* but doesn'tTim Peters2001-11-281-8/+24
* PyFloat_FromString(): Conversion of sprintf() to PyOS_snprintf() forBarry Warsaw2001-11-281-2/+4
* float_divmod(): the code wasn't sick enough to stop the MS optimizerTim Peters2001-11-011-1/+1
* SF bug #477221: abs and divmod act oddly with -0.0Tim Peters2001-11-011-9/+26
* float_abs() again: Guido pointed out that this could screw up in theTim Peters2001-11-011-6/+1
* SF bug #477221: abs and divmod act oddly with -0.0.Tim Peters2001-11-011-9/+11
* SF patch #474590 -- RISC OS supportGuido van Rossum2001-10-241-0/+7
* 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