summaryrefslogtreecommitdiffstats
path: root/Objects/floatobject.c
Commit message (Expand)AuthorAgeFilesLines
* The previous change was causing a segfault after multiple calls to Py_Initial...Christian Heimes2008-01-301-9/+5
* Fixed some references leaks in sys.Christian Heimes2008-01-301-1/+0
* Moved Rational._binary_float_to_ratio() to float.as_integer_ratio() becauseJeffrey Yasskin2008-01-271-0/+159
* Add prototypes to get the mathmodule.c to compile on OSF1 5.1 (Tru64)Neal Norwitz2008-01-251-0/+5
* Now that I've learnt about structseq objects I felt like converting sys.float...Christian Heimes2008-01-141-29/+78
* Continue rolling back pep-3141 changes that changed behavior from 2.5. ThisJeffrey Yasskin2008-01-051-55/+3
* Backport PEP 3141 from the py3k branch to the trunk. This includes r50877 (justJeffrey Yasskin2008-01-031-26/+82
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFC...Christian Heimes2007-12-191-12/+12
* Applied patch #1635: Float patch for inf and nan on Windows (and other platfo...Christian Heimes2007-12-181-1/+49
* The new float repr causes too much trouble and pain. I'm disabling the featur...Christian Heimes2007-12-111-1/+12
* Backport of r59456:59458 from py3k to trunkChristian Heimes2007-12-101-2/+106
* Feature #1534Christian Heimes2007-12-011-0/+47
* Add a bunch of GIL release/acquire points in tp_print implementations and forBrett Cannon2007-09-171-0/+2
* PEP 3123: Provide forward compatibility with Python 3.0, while keepingMartin v. Löwis2007-07-211-14/+13
* Remove dead code. This code couldn't be reached because earlier inNeal Norwitz2007-05-031-12/+1
* Reverting the patch that tried to fix the issue whereby x**2 raisesAlex Martelli2006-08-231-3/+3
* x**2 should about equal x*x (including for a float x such that the result isAlex Martelli2006-08-231-3/+3
* Added a new macro, Py_IS_FINITE(X). On windows there is an intrinsic for thi...Kristján Valur Jónsson2006-05-251-5/+2
* C++ compiler cleanup: bunch-o-casts, plus use of unsigned loop index var in a...Skip Montanaro2006-04-181-1/+1
* More C++-compliance. Note especially listobject.c - to get C++ to accept theAnthony Baxter2006-04-111-5/+5
* Remove unnecessary casts in type object initializers.Georg Brandl2006-03-301-12/+12
* 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