| Commit message (Expand) | Author | Age | Files | Lines |
* | Undef MIN and MAX before defining them, to avoid warnings on certain | Guido van Rossum | 2002-07-13 | 1 | -0/+2 |
|
|
* | Patch #568124: Add doc string macros. | Martin v. Löwis | 2002-06-13 | 1 | -2/+2 |
|
|
* | Clarify return value of PyLong_AsLongLong(). | Jeremy Hylton | 2002-04-23 | 1 | -1/+1 |
|
|
* | PyObject_Del can now be used as a function designator. | Neil Schemenauer | 2002-04-12 | 1 | -1/+1 |
|
|
* | Patch #494047: removes 64-bit ?: to cope on plan9. | Martin v. Löwis | 2002-03-09 | 1 | -2/+10 |
|
|
* | _PyLong_Copy(): was creating a copy of the absolute value, but should | Tim Peters | 2002-03-02 | 1 | -1/+1 |
|
|
* | Patch #508038: Do not use a type as a variable name. | Martin v. Löwis | 2002-02-16 | 1 | -3/+3 |
|
|
* | long_true_divide(): decref its converted arguments. test_long_future.py | Tim Peters | 2001-11-04 | 1 | -2/+5 |
|
|
* | Enable GC for new-style instances. This touches lots of files, since | Guido van Rossum | 2001-10-05 | 1 | -1/+2 |
|
|
* | SF [#466125] PyLong_AsLongLong works for any integer. | Tim Peters | 2001-09-30 | 1 | -1/+7 |
|
|
* | Add additional coercion support for "self subtypes" to int, long, | Guido van Rossum | 2001-09-19 | 1 | -0/+5 |
|
|
* | A fix for SF bug #461546 (bug in long_mul). | Guido van Rossum | 2001-09-15 | 1 | -10/+14 |
|
|
* | based upon a suggestion in c.l.py, this slight expansion of the | Skip Montanaro | 2001-09-13 | 1 | -1/+1 |
|
|
* | long_invert(): tiny speed and space optimization. | Tim Peters | 2001-09-11 | 1 | -2/+1 |
|
|
* | More bug 460020. Disable a number of long optimizations for long subclasses. | Tim Peters | 2001-09-11 | 1 | -18/+15 |
|
|
* | SF bug #460020: bug or feature: unicode() and subclasses. | Tim Peters | 2001-09-10 | 1 | -1/+20 |
|
|
* | long_true_divide: reliably force underflow to 0 when the denominator | Tim Peters | 2001-09-06 | 1 | -0/+2 |
|
|
* | Make the error msgs in our pow() implementations consistent. | Tim Peters | 2001-09-05 | 1 | -3/+10 |
|
|
* | Try to recover from that glibc's ldexp apparently doesn't set errno on | Tim Peters | 2001-09-05 | 1 | -2/+2 |
|
|
* | Change long/long true division to return as many good bits as it can; | Tim Peters | 2001-09-04 | 1 | -1/+32 |
|
|
* | Move long_true_divide next to the other division routines (for clarity!). | Tim Peters | 2001-09-04 | 1 | -6/+6 |
|
|
* | Raise OverflowError when appropriate on long->float conversion. Most of | Tim Peters | 2001-09-04 | 1 | -18/+19 |
|
|
* | Introduce new private API function _PyLong_AsScaledDouble. Not used yet, | Tim Peters | 2001-09-04 | 1 | -0/+52 |
|
|
* | New restriction on pow(x, y, z): If z is not None, x and y must be of | Tim Peters | 2001-09-03 | 1 | -3/+8 |
|
|
* | Add warning mode for classic division, almost exactly as specified in | Guido van Rossum | 2001-08-31 | 1 | -1/+21 |
|
|
* | Ah, the joy of writing test cases... | Guido van Rossum | 2001-08-30 | 1 | -1/+1 |
|
|
* | Make int, long and float subclassable. | Guido van Rossum | 2001-08-29 | 1 | -2/+36 |
|
|
* | 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 | -11/+21 |
|
|
* | Merge of descr-branch back into trunk. | Tim Peters | 2001-08-02 | 1 | -20/+75 |
|
|
* | Python.h: Don't attempt to redefine NDEBUG if it's already defined. | Tim Peters | 2001-07-15 | 1 | -1/+0 |
|
|
* | long_format: Simplify the overly elaborate base-is-a-power-of-2 code. | Tim Peters | 2001-07-15 | 1 | -28/+16 |
|
|
* | divrem1 & long_format: found a clean way to factor divrem1 so that | Tim Peters | 2001-07-14 | 1 | -28/+54 |
|
|
* | long_format(): Simplify new code a bit. | Tim Peters | 2001-07-14 | 1 | -5/+8 |
|
|
* | long_format(): Easy speedup for output bases that aren't a power of 2 (in | Tim Peters | 2001-07-13 | 1 | -9/+26 |
|
|
* | On long to the negative long power, let float handle it instead of | Guido van Rossum | 2001-07-12 | 1 | -8/+7 |
|
|
* | PyLong_{As, From}VoidPtr: cleanup, replacing assumptions in comments with | Tim Peters | 2001-06-16 | 1 | -15/+23 |
|
|
* | Change IS_LITTLE_ENDIAN macro -- a little faster now. | Tim Peters | 2001-06-14 | 1 | -1/+1 |
|
|
* | _PyLong_AsByteArray: simplify the logic for dealing with the most- | Tim Peters | 2001-06-14 | 1 | -11/+13 |
|
|
* | PyLong_From{Unsigned,}Long: count the # of digits first, so no more space | Tim Peters | 2001-06-14 | 1 | -21/+41 |
|
|
* | _PyLong_FromByteArray: changed decl of "carry" to match "thisbyte". No | Tim Peters | 2001-06-13 | 1 | -1/+1 |
|
|
* | _PyLong_AsByteArray: Don't do the "delicate overflow" check unless it's | Tim Peters | 2001-06-13 | 1 | -9/+18 |
|
|
* | _PyLong_AsByteArray: added assert that the input is normalized. This is | Tim Peters | 2001-06-13 | 1 | -1/+5 |
|
|
* | PyLong_As{Unsigned,}LongLong: fiddled final result casting. | Tim Peters | 2001-06-13 | 1 | -2/+2 |
|
|
* | longobject.c: | Tim Peters | 2001-06-13 | 1 | -126/+41 |
|
|
* | _PyLong_{As,From}ByteArray: Minor code rearrangement aimed at improving | Tim Peters | 2001-06-12 | 1 | -11/+14 |
|
|
* | Added q/Q standard (x-platform 8-byte ints) mode in struct module. | Tim Peters | 2001-06-12 | 1 | -6/+19 |
|
|
* | Two new private longobject API functions, | Tim Peters | 2001-06-11 | 1 | -0/+213 |
|
|
* | Rich comparisons fall-out: | Guido van Rossum | 2001-01-17 | 1 | -17/+1 |
|
|
* | Make long a new style number type. Sequence repeat is now done here | Neil Schemenauer | 2001-01-04 | 1 | -76/+262 |
|
|