| Commit message (Expand) | Author | Age | Files | Lines |
* | 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 |
|
|
* | Patch #568124: Add doc string macros. | Martin v. Löwis | 2002-06-13 | 1 | -2/+2 |
|
|
* | clarify message when raising TypeError to indicate that float() accepts | Skip Montanaro | 2002-05-02 | 1 | -1/+1 |
|
|
* | 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 |
|
|