summaryrefslogtreecommitdiffstats
path: root/Objects/floatobject.c
Commit message (Expand)AuthorAgeFilesLines
* Getting rid of all the code inside #ifdef macintosh too.Jack Jansen2003-11-201-1/+1
* SF patch 703666: Several objects don't decref tmp on failure in subtype_newRaymond Hettinger2003-06-281-1/+3
* SF bug 705231: Assertion failed, python aborts.Tim Peters2003-05-241-6/+38
* _PyFloat_Pack4(): Removed needless call of floor().Tim Peters2003-03-211-1/+1
* New private API functions _PyFloat_{Pack,Unpack}(4,8}. This is aTim Peters2003-03-201-0/+313
* Implement appropriate __getnewargs__ for all immutable subclassable builtinGuido van Rossum2003-01-291-1/+12
* Fix SF bug# 676155, RuntimeWarning with tp_compareNeal Norwitz2003-01-281-1/+4
* float_int(): Some systems raise an exception if a double is cast toTim Peters2002-11-211-14/+16
* Change int() so that passing a string, unicode, float or long argumentWalter Dörwald2002-11-191-11/+9
* Improve exception message raised by PyFloat_AsDouble if the object does notNeil Schemenauer2002-11-181-2/+6
* Call me anal, but there was a particular phrase that was speading toGuido van Rossum2002-08-191-1/+1
* 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