| Commit message (Expand) | Author | Age | Files | Lines |
* | SF bug 525705: [2.2] underflow raise OverflowException. | Tim Peters | 2002-03-09 | 1 | -2/+2 |
|
|
* | float_floor_div: An expression like 3.//1j crashed the interpreter, or | Tim Peters | 2001-12-11 | 1 | -9/+12 |
|
|
* | float_int_div(): For clarity, move this closer to the other float | Tim Peters | 2001-12-11 | 1 | -16/+16 |
|
|
* | PyFloat_AsStringEx(): This function takes an output char* but doesn't | Tim Peters | 2001-11-28 | 1 | -8/+24 |
|
|
* | PyFloat_FromString(): Conversion of sprintf() to PyOS_snprintf() for | Barry Warsaw | 2001-11-28 | 1 | -2/+4 |
|
|
* | float_divmod(): the code wasn't sick enough to stop the MS optimizer | Tim Peters | 2001-11-01 | 1 | -1/+1 |
|
|
* | SF bug #477221: abs and divmod act oddly with -0.0 | Tim Peters | 2001-11-01 | 1 | -9/+26 |
|
|
* | float_abs() again: Guido pointed out that this could screw up in the | Tim Peters | 2001-11-01 | 1 | -6/+1 |
|
|
* | SF bug #477221: abs and divmod act oddly with -0.0. | Tim Peters | 2001-11-01 | 1 | -9/+11 |
|
|
* | SF patch #474590 -- RISC OS support | Guido van Rossum | 2001-10-24 | 1 | -0/+7 |
|
|
* | Enable GC for new-style instances. This touches lots of files, since | Guido van Rossum | 2001-10-05 | 1 | -2/+6 |
|
|
* | Add additional coercion support for "self subtypes" to int, long, | Guido van Rossum | 2001-09-19 | 1 | -0/+5 |
|
|
* | Again perhaps the end of [#460020] bug or feature: unicode() and subclasses. | Tim Peters | 2001-09-12 | 1 | -1/+1 |
|
|
* | More bug 460020: when F is a subclass of float, disable the unary plus | Tim Peters | 2001-09-11 | 1 | -2/+6 |
|
|
* | Replace a few places where X->ob_type was compared to &PyXXX_Type with | Guido van Rossum | 2001-09-11 | 1 | -3/+3 |
|
|
* | Better error msg for 3-arg pow with a float argument. | Tim Peters | 2001-09-05 | 1 | -1/+1 |
|
|
* | Rework the way we try to check for libm overflow, given that C99 no longer | Tim Peters | 2001-09-05 | 1 | -16/+1 |
|
|
* | Make the error msgs in our pow() implementations consistent. | Tim Peters | 2001-09-05 | 1 | -2/+2 |
|
|
* | Raise OverflowError when appropriate on long->float conversion. Most of | Tim Peters | 2001-09-04 | 1 | -5/+6 |
|
|
* | PEP 238 documented -Qwarn as warning only for classic int or long | Guido van Rossum | 2001-09-04 | 1 | -1/+1 |
|
|
* | New restriction on pow(x, y, z): If z is not None, x and y must be of | Tim Peters | 2001-09-03 | 1 | -15/+7 |
|
|
* | Add warning mode for classic division, almost exactly as specified in | Guido van Rossum | 2001-08-31 | 1 | -1/+20 |
|
|
* | Fix typo: double semicolons. | Guido van Rossum | 2001-08-30 | 1 | -1/+1 |
|
|
* | Make int, long and float subclassable. | Guido van Rossum | 2001-08-29 | 1 | -5/+35 |
|
|
* | float_pow: Put *all* of the burden on the libm pow in normal | Tim Peters | 2001-08-23 | 1 | -45/+16 |
|
|
* | Patch #445762: Support --disable-unicode | Martin v. Löwis | 2001-08-17 | 1 | -0/+4 |
|
|
* | Implement PEP 238 in its (almost) full glory. | Guido van Rossum | 2001-08-08 | 1 | -13/+32 |
|
|
* | Merge of descr-branch back into trunk. | Tim Peters | 2001-08-02 | 1 | -16/+54 |
|
|
* | SF bug #444510: int() should guarantee truncation. | Tim Peters | 2001-07-26 | 1 | -7/+13 |
|
|
* | SF bug #422177: Results from .pyc differs from .py | Tim Peters | 2001-05-08 | 1 | -0/+6 |
|
|
* | When 1.6 boosted the # of digits produced by repr(float), repr(complex) | Tim Peters | 2001-03-11 | 1 | -1/+0 |
|
|
* | Avoid giving prototypes on Solaris. | Martin v. Löwis | 2001-03-06 | 1 | -1/+1 |
|
|
* | SF patch 103543 from tg@freebsd.org: | Jeremy Hylton | 2001-02-01 | 1 | -1/+1 |
|
|
* | Rich comparisons fall-out: | Guido van Rossum | 2001-01-17 | 1 | -14/+1 |
|
|
* | Fix a silly bug in float_pow. Sorry Tim. | Neil Schemenauer | 2001-01-08 | 1 | -1/+1 |
|
|
* | Make float a new style number type. | Neil Schemenauer | 2001-01-04 | 1 | -42/+108 |
|
|
* | Ka-Ping Yee <ping@lfw.org>: | Fred Drake | 2000-10-24 | 1 | -2/+2 |
|
|
* | SF bug 115831 and Ping's SF patch 101751, 0.0**-2.0 returns inf rather than | Tim Peters | 2000-10-06 | 1 | -28/+35 |
|
|
* | Rationalize use of limits.h, moving the inclusion to Python.h. | Fred Drake | 2000-09-26 | 1 | -30/+0 |
|
|
* | Replace SIGFPE paranoia around strtod and atof. I don't believe these | Tim Peters | 2000-09-25 | 1 | -0/+4 |
|
|
* | Fix for SF bug 110624: float literals behave inconsistently. | Tim Peters | 2000-09-23 | 1 | -16/+44 |
|
|
* | Fixed legit gripe from c.l.py that math.fmod docs aren't confusing enough. | Tim Peters | 2000-09-16 | 1 | -1/+1 |
|
|
* | REMOVED all CWI, CNRI and BeOpen copyright markings. | Guido van Rossum | 2000-09-01 | 1 | -9/+0 |
|
|
* | PyFloat_FromString(): Move s_buffer[] up to the top-level function | Barry Warsaw | 2000-08-18 | 1 | -2/+1 |
|
|
* | Fix for http://sourceforge.net/bugs/?func=detailbug&bug_id=111866&group_id=5470. | Tim Peters | 2000-08-15 | 1 | -38/+1 |
|
|
* | Clean up a warning on Win64. The downcast of the strlen size_t | Trent Mick | 2000-08-12 | 1 | -1/+1 |
|
|
* | merge Include/my*.h into Include/pyport.h | Peter Schneider-Kamp | 2000-07-31 | 1 | -1/+0 |
|
|
* | Remove legacy use of __SC__; no longer needed now that ANSI source is | Fred Drake | 2000-07-09 | 1 | -5/+0 |
|
|
* | ANSI-fication of the sources. | Fred Drake | 2000-07-09 | 1 | -70/+29 |
|
|
* | Nuke all remaining occurrences of Py_PROTO and Py_FPROTO. | Tim Peters | 2000-07-09 | 1 | -3/+3 |
|
|