summaryrefslogtreecommitdiffstats
path: root/Objects/floatobject.c
Commit message (Expand)AuthorAgeFilesLines
* Remove PyFloat_AsReprString() and PyFloat_AsString() which should notNeal Norwitz2006-12-281-27/+16
* - patch #1600346 submitted by Tomer FilibaJack Diederich2006-11-281-2/+2
* Get rid of most of the rest of coerce (slot is still there for now).Neal Norwitz2006-08-211-26/+1
* Get rid of most of the flags (in tp_flags) that keep track of variousGuido van Rossum2006-07-271-2/+1
* Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.Thomas Wouters2006-05-271-5/+2
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-17/+17
* Get rid of remnants of integer divisionNeal Norwitz2006-03-241-21/+0
* Use %ld and casts to long for refcount printing, in absense of a universallyThomas Wouters2006-03-011-2/+6
* Revert backwards-incompatible const changes.Martin v. Löwis2006-02-271-1/+1
* Merge ssize_t branch.Martin v. Löwis2006-02-151-2/+2
* Fix icc warnings: remove unused variableNeal Norwitz2006-01-081-2/+1
* Add const to several API functions that take char *.Jeremy Hylton2005-12-101-1/+1
* Fix bugMichael W. Hudson2005-12-051-5/+13
* Apparently some compiler gives a warning onMichael W. Hudson2005-06-301-1/+1
* This is my patch:Michael W. Hudson2005-05-271-239/+509
* Make subclasses of int, long, complex, float, and unicode perform typeBrett Cannon2005-04-261-1/+4
* float_richcompare(): Use the new Py_IS_NAN macro to ensure that, onTim Peters2004-09-231-11/+9
* SF bug #513866: Float/long comparison anomaly.Tim Peters2004-09-231-8/+206
* Fix a couple of signed/unsigned comparison warningsNeal Norwitz2004-07-081-1/+1
* Patch #774665: Make Python LC_NUMERIC agnostic.Martin v. Löwis2004-06-081-3/+5
* Remove float_compare as perMichael W. Hudson2004-05-261-9/+1
* Oops, didn't mean to commit the removal of float_compare!Michael W. Hudson2004-02-261-1/+1
* Pass a variable that actually exists to PyFPE_END_PROTECT inMichael W. Hudson2004-02-261-2/+2
* "Fix" (for certain configurations of the planets, includingMichael W. Hudson2004-02-191-1/+35
* Remove support for SunOS 4.Skip Montanaro2004-01-171-10/+0
* 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