| Commit message (Expand) | Author | Age | Files | Lines |
* | Finish the work on __round__ and __trunc__. | Guido van Rossum | 2007-08-23 | 1 | -10/+57 |
|
|
* | Fix memory leak | Neal Norwitz | 2007-08-12 | 1 | -1/+1 |
|
|
* | Kill all uses and definitions of tp_print under Objects/. (Others will follow.) | Guido van Rossum | 2007-08-07 | 1 | -13/+2 |
|
|
* | Changes to long and float by Jeffrey Jasskin to conform to PEP 3141. | Guido van Rossum | 2007-08-01 | 1 | -13/+22 |
|
|
* | Merged revisions 56467-56482 via svnmerge from | Martin v. Löwis | 2007-07-21 | 1 | -14/+13 |
|
|
* | Change float.__getformat__() to return a unicode string. | Walter Dörwald | 2007-06-22 | 1 | -3/+3 |
|
|
* | Change float.__str__() and complex.__str__() to return | Walter Dörwald | 2007-05-31 | 1 | -1/+1 |
|
|
* | Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror | Walter Dörwald | 2007-05-18 | 1 | -1/+1 |
|
|
* | Make tset_float pass. float(<unicode>) was never very good -- it used | Guido van Rossum | 2007-05-15 | 1 | -13/+21 |
|
|
* | Merged revisions 55325-55327 via svnmerge from | Guido van Rossum | 2007-05-14 | 1 | -12/+1 |
|
|
* | Get rid of all #ifdef Py_USING_UNICODE (it is always present now). | Guido van Rossum | 2007-05-03 | 1 | -4/+0 |
|
|
* | Remove the deprecated and useless "pend" argument from | Georg Brandl | 2007-03-18 | 1 | -20/+2 |
|
|
* | Merged the int/long unification branch, by very crude means (sorry Thomas!). | Guido van Rossum | 2007-01-14 | 1 | -30/+1 |
|
|
* | Remove PyFloat_AsReprString() and PyFloat_AsString() which should not | Neal Norwitz | 2006-12-28 | 1 | -27/+16 |
|
|
* | - patch #1600346 submitted by Tomer Filiba | Jack Diederich | 2006-11-28 | 1 | -2/+2 |
|
|
* | Get rid of most of the rest of coerce (slot is still there for now). | Neal Norwitz | 2006-08-21 | 1 | -26/+1 |
|
|
* | Get rid of most of the flags (in tp_flags) that keep track of various | Guido van Rossum | 2006-07-27 | 1 | -2/+1 |
|
|
* | Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. | Thomas Wouters | 2006-05-27 | 1 | -5/+2 |
|
|
* | Merge p3yk branch with the trunk up to revision 45595. This breaks a fair | Thomas Wouters | 2006-04-21 | 1 | -17/+17 |
|
|
* | Get rid of remnants of integer division | Neal Norwitz | 2006-03-24 | 1 | -21/+0 |
|
|
* | Use %ld and casts to long for refcount printing, in absense of a universally | Thomas Wouters | 2006-03-01 | 1 | -2/+6 |
|
|
* | Revert backwards-incompatible const changes. | Martin v. Löwis | 2006-02-27 | 1 | -1/+1 |
|
|
* | Merge ssize_t branch. | Martin v. Löwis | 2006-02-15 | 1 | -2/+2 |
|
|
* | Fix icc warnings: remove unused variable | Neal Norwitz | 2006-01-08 | 1 | -2/+1 |
|
|
* | Add const to several API functions that take char *. | Jeremy Hylton | 2005-12-10 | 1 | -1/+1 |
|
|
* | Fix bug | Michael W. Hudson | 2005-12-05 | 1 | -5/+13 |
|
|
* | Apparently some compiler gives a warning on | Michael W. Hudson | 2005-06-30 | 1 | -1/+1 |
|
|
* | This is my patch: | Michael W. Hudson | 2005-05-27 | 1 | -239/+509 |
|
|
* | Make subclasses of int, long, complex, float, and unicode perform type | Brett Cannon | 2005-04-26 | 1 | -1/+4 |
|
|
* | float_richcompare(): Use the new Py_IS_NAN macro to ensure that, on | Tim Peters | 2004-09-23 | 1 | -11/+9 |
|
|
* | SF bug #513866: Float/long comparison anomaly. | Tim Peters | 2004-09-23 | 1 | -8/+206 |
|
|
* | Fix a couple of signed/unsigned comparison warnings | Neal Norwitz | 2004-07-08 | 1 | -1/+1 |
|
|
* | Patch #774665: Make Python LC_NUMERIC agnostic. | Martin v. Löwis | 2004-06-08 | 1 | -3/+5 |
|
|
* | Remove float_compare as per | Michael W. Hudson | 2004-05-26 | 1 | -9/+1 |
|
|
* | Oops, didn't mean to commit the removal of float_compare! | Michael W. Hudson | 2004-02-26 | 1 | -1/+1 |
|
|
* | Pass a variable that actually exists to PyFPE_END_PROTECT in | Michael W. Hudson | 2004-02-26 | 1 | -2/+2 |
|
|
* | "Fix" (for certain configurations of the planets, including | Michael W. Hudson | 2004-02-19 | 1 | -1/+35 |
|
|
* | Remove support for SunOS 4. | Skip Montanaro | 2004-01-17 | 1 | -10/+0 |
|
|
* | Getting rid of all the code inside #ifdef macintosh too. | Jack Jansen | 2003-11-20 | 1 | -1/+1 |
|
|
* | SF patch 703666: Several objects don't decref tmp on failure in subtype_new | Raymond Hettinger | 2003-06-28 | 1 | -1/+3 |
|
|
* | SF bug 705231: Assertion failed, python aborts. | Tim Peters | 2003-05-24 | 1 | -6/+38 |
|
|
* | _PyFloat_Pack4(): Removed needless call of floor(). | Tim Peters | 2003-03-21 | 1 | -1/+1 |
|
|
* | New private API functions _PyFloat_{Pack,Unpack}(4,8}. This is a | Tim Peters | 2003-03-20 | 1 | -0/+313 |
|
|
* | Implement appropriate __getnewargs__ for all immutable subclassable builtin | Guido van Rossum | 2003-01-29 | 1 | -1/+12 |
|
|
* | Fix SF bug# 676155, RuntimeWarning with tp_compare | Neal Norwitz | 2003-01-28 | 1 | -1/+4 |
|
|
* | float_int(): Some systems raise an exception if a double is cast to | Tim Peters | 2002-11-21 | 1 | -14/+16 |
|
|
* | Change int() so that passing a string, unicode, float or long argument | Walter Dörwald | 2002-11-19 | 1 | -11/+9 |
|
|
* | Improve exception message raised by PyFloat_AsDouble if the object does not | Neil Schemenauer | 2002-11-18 | 1 | -2/+6 |
|
|
* | Call me anal, but there was a particular phrase that was speading to | Guido van Rossum | 2002-08-19 | 1 | -1/+1 |
|
|
* | staticforward bites the dust. | Jeremy Hylton | 2002-07-17 | 1 | -1/+1 |
|
|