summaryrefslogtreecommitdiffstats
path: root/Objects/floatobject.c
Commit message (Expand)AuthorAgeFilesLines
* Merged revisions 62380,62382-62383 via svnmerge fromChristian Heimes2008-04-191-124/+77
* Merged revisions 61981,61984-61987,61992-61993,61997-62000 via svnmerge fromChristian Heimes2008-03-281-0/+4
* Merged revisions 61964-61979 via svnmerge fromChristian Heimes2008-03-281-1/+1
* Merged revisions 61239-61249,61252-61257,61260-61264,61269-61275,61278-61279,...Christian Heimes2008-03-161-8/+8
* Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,...Christian Heimes2008-02-041-7/+23
* Merged revisions 60481,60485,60489-60520,60523-60527,60530-60533,60535-60538,...Christian Heimes2008-02-031-88/+29
* Merged revisions 60441-60474 via svnmerge fromChristian Heimes2008-01-311-9/+4
* Merged revisions 60364-60378 via svnmerge fromChristian Heimes2008-01-271-0/+159
* Merged revisions 60245-60277 via svnmerge fromChristian Heimes2008-01-251-0/+5
* Merged revisions 59933-59951 via svnmerge fromChristian Heimes2008-01-141-29/+77
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.Christian Heimes2007-12-191-12/+12
* Merged revisions 59541-59561 via svnmerge fromChristian Heimes2007-12-191-2/+50
* Merged revisions 59450-59464 via svnmerge fromChristian Heimes2007-12-111-1/+12
* Issue #1580: New free format floating point representation based on "Floating...Christian Heimes2007-12-101-2/+106
* Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes2007-12-021-3/+3
* Merged revisions 59245-59254 via svnmerge fromChristian Heimes2007-12-011-0/+47
* Remove more cruft leftover from nb_coerce. Rename nb_coerce toNeil Schemenauer2007-09-211-3/+2
* Check in some documentation tweaks for PEP 3141, add some tests, and implementJeffrey Yasskin2007-09-071-3/+4
* Remove checking redundantly for checks of PyInt and PyLong.Neal Norwitz2007-08-311-1/+1
* Use pow() instead of repeated multiplication by 10 in round(x, n).Guido van Rossum2007-08-311-15/+5
* Use unicode and remove support for some uses of str8.Neal Norwitz2007-08-261-13/+6
* Implementation of PEP 3101, Advanced String Formatting.Eric Smith2007-08-251-0/+19
* Finish the work on __round__ and __trunc__.Guido van Rossum2007-08-231-10/+57
* Fix memory leakNeal Norwitz2007-08-121-1/+1
* Kill all uses and definitions of tp_print under Objects/. (Others will follow.)Guido van Rossum2007-08-071-13/+2
* Changes to long and float by Jeffrey Jasskin to conform to PEP 3141.Guido van Rossum2007-08-011-13/+22
* Merged revisions 56467-56482 via svnmerge fromMartin v. Löwis2007-07-211-14/+13
* Change float.__getformat__() to return a unicode string.Walter Dörwald2007-06-221-3/+3
* Change float.__str__() and complex.__str__() to returnWalter Dörwald2007-05-311-1/+1
* Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirrorWalter Dörwald2007-05-181-1/+1
* Make tset_float pass. float(<unicode>) was never very good -- it usedGuido van Rossum2007-05-151-13/+21
* Merged revisions 55325-55327 via svnmerge fromGuido van Rossum2007-05-141-12/+1
* Get rid of all #ifdef Py_USING_UNICODE (it is always present now).Guido van Rossum2007-05-031-4/+0
* Remove the deprecated and useless "pend" argument fromGeorg Brandl2007-03-181-20/+2
* Merged the int/long unification branch, by very crude means (sorry Thomas!).Guido van Rossum2007-01-141-30/+1
* 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