COMMITS
/ Objects/floatobject.c June 28, 2003
R
SF patch 703666: Several objects don't decref tmp on failure in subtype_new
Raymond Hettinger committed
May 24, 2003
T
SF bug 705231: Assertion failed, python aborts.
Tim Peters committed
March 21, 2003
T
_PyFloat_Pack4(): Removed needless call of floor().
Tim Peters committed
March 20, 2003
T
New private API functions _PyFloat_{Pack,Unpack}(4,8}. This is a
Tim Peters committed
January 29, 2003
G
Implement appropriate __getnewargs__ for all immutable subclassable builtin
Guido van Rossum committed
January 28, 2003
N
Fix SF bug# 676155, RuntimeWarning with tp_compare
Neal Norwitz committed
November 21, 2002
T
float_int(): Some systems raise an exception if a double is cast to
Tim Peters committed
November 19, 2002
W
Change int() so that passing a string, unicode, float or long argument
Walter Dörwald committed
November 18, 2002
N
Improve exception message raised by PyFloat_AsDouble if the object does not
Neil Schemenauer committed
August 19, 2002
G
Call me anal, but there was a particular phrase that was speading to
Guido van Rossum committed
July 17, 2002
J
staticforward bites the dust.
Jeremy Hylton committed
June 13, 2002
M
Patch #568124: Add doc string macros.
Martin v. Löwis committed
May 2, 2002
S
clarify message when raising TypeError to indicate that float() accepts
Skip Montanaro committed
March 9, 2002
T
SF bug 525705: [2.2] underflow raise OverflowException.
Tim Peters committed
December 11, 2001
T
float_floor_div: An expression like 3.//1j crashed the interpreter, or
Tim Peters committed
T
float_int_div(): For clarity, move this closer to the other float
Tim Peters committed
November 28, 2001
T
PyFloat_AsStringEx(): This function takes an output char* but doesn't
Tim Peters committed
B
PyFloat_FromString(): Conversion of sprintf() to PyOS_snprintf() for
Barry Warsaw committed
November 1, 2001
T
float_divmod(): the code wasn't sick enough to stop the MS optimizer
Tim Peters committed
T
SF bug #477221: abs and divmod act oddly with -0.0
Tim Peters committed
T
float_abs() again: Guido pointed out that this could screw up in the
Tim Peters committed
T
SF bug #477221: abs and divmod act oddly with -0.0.
Tim Peters committed
October 24, 2001
G
SF patch #474590 -- RISC OS support
Guido van Rossum committed
October 5, 2001
G
Enable GC for new-style instances. This touches lots of files, since
Guido van Rossum committed
September 19, 2001
G
Add additional coercion support for "self subtypes" to int, long,
Guido van Rossum committed
September 12, 2001
T
Again perhaps the end of [#460020] bug or feature: unicode() and subclasses.
Tim Peters committed
September 11, 2001
T
More bug 460020: when F is a subclass of float, disable the unary plus
Tim Peters committed
G
Replace a few places where X->ob_type was compared to &PyXXX_Type with
Guido van Rossum committed
September 5, 2001
T
Better error msg for 3-arg pow with a float argument.
Tim Peters committed
T
Rework the way we try to check for libm overflow, given that C99 no longer
Tim Peters committed
T
Make the error msgs in our pow() implementations consistent.
Tim Peters committed
September 4, 2001
T
Raise OverflowError when appropriate on long->float conversion. Most of
Tim Peters committed
G
PEP 238 documented -Qwarn as warning only for classic int or long
Guido van Rossum committed
September 3, 2001
T
New restriction on pow(x, y, z): If z is not None, x and y must be of
Tim Peters committed
August 31, 2001
G
Add warning mode for classic division, almost exactly as specified in
Guido van Rossum committed
August 30, 2001
G
Fix typo: double semicolons.
Guido van Rossum committed
August 29, 2001
G
Make int, long and float subclassable.
Guido van Rossum committed
August 23, 2001
T
float_pow: Put *all* of the burden on the libm pow in normal
Tim Peters committed
August 17, 2001
M
Patch #445762: Support --disable-unicode
Martin v. Löwis committed
August 8, 2001
G
Implement PEP 238 in its (almost) full glory.
Guido van Rossum committed
August 2, 2001
T
Merge of descr-branch back into trunk.
Tim Peters committed
July 26, 2001
T
SF bug #444510: int() should guarantee truncation.
Tim Peters committed
May 8, 2001
T
SF bug #422177: Results from .pyc differs from .py
Tim Peters committed
March 11, 2001
T
When 1.6 boosted the # of digits produced by repr(float), repr(complex)
Tim Peters committed
March 6, 2001
M
Avoid giving prototypes on Solaris.
Martin v. Löwis committed
February 1, 2001
J
SF patch 103543 from tg@freebsd.org:
Jeremy Hylton committed
January 17, 2001
G
Rich comparisons fall-out:
Guido van Rossum committed
January 8, 2001
N
Fix a silly bug in float_pow. Sorry Tim.
Neil Schemenauer committed
January 4, 2001
N
Make float a new style number type.
Neil Schemenauer committed
October 24, 2000
F
Ka-Ping Yee <ping@lfw.org>:
Fred Drake committed