| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | 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 |
|
|
* | Ka-Ping Yee <ping@lfw.org>: | Fred Drake | 2000-10-24 | 1 | -4/+4 |
|
|
* | SF bug 115831 and Ping's SF patch 101751, 0.0**-2.0 returns inf rather than | Tim Peters | 2000-10-06 | 1 | -2/+6 |
|
|
* | REMOVED all CWI, CNRI and BeOpen copyright markings. | Guido van Rossum | 2000-09-01 | 1 | -9/+0 |
|
|
* | Fix for http://sourceforge.net/bugs/?func=detailbug&bug_id=111866&group_id=5470. | Tim Peters | 2000-08-15 | 1 | -1/+1 |
|
|
* | merge Include/my*.h into Include/pyport.h | Peter Schneider-Kamp | 2000-07-31 | 1 | -1/+0 |
|
|
* | Cray J90 fixes for long ints. | Tim Peters | 2000-07-08 | 1 | -5/+8 |
|
|
* | The tail end of x_sub implicitly assumed that an unsigned short | Tim Peters | 2000-07-08 | 1 | -0/+1 |
|
|
* | Got RID of redundant coercions in longobject.c (as spotted by Greg | Tim Peters | 2000-07-08 | 1 | -6/+3 |
|
|
* | Some cleanup of longs in prepartion for Cray J90 fixes: got | Tim Peters | 2000-07-07 | 1 | -241/+105 |
|
|
* | Change copyright notice - 2nd try. | Guido van Rossum | 2000-06-30 | 1 | -6/+0 |
|
|
* | Change copyright notice. | Guido van Rossum | 2000-06-30 | 1 | -22/+7 |
|
|
* | Trent Mick <trentm@ActiveState.com>: | Fred Drake | 2000-06-01 | 1 | -2/+2 |
|
|
* | Vladimir Marangozov's long-awaited malloc restructuring. | Guido van Rossum | 2000-05-03 | 1 | -1/+1 |
|
|
* | Simple optimization by Christian Tismer, who gives credit to Lenny | Guido van Rossum | 2000-04-10 | 1 | -0/+9 |
|
|
* | Marc-Andre's third try at this bulk patch seems to work (except that | Guido van Rossum | 2000-04-05 | 1 | -7/+34 |
|
|
* | long_format(): Now takes a third parameter, addL; iff true, a | Fred Drake | 1999-12-23 | 1 | -9/+19 |
|
|
* | Fix PR#66. Solution: add error checking around l_divmod() calls in | Guido van Rossum | 1999-10-11 | 1 | -4/+18 |
|
|
* | Patch by Tim Peters fixing PR#89: | Guido van Rossum | 1999-09-27 | 1 | -0/+5 |
|
|
* | PyLong_FromString(): Nailed a small memory leak. In the str==start | Barry Warsaw | 1999-01-27 | 1 | -0/+1 |
|
|
* | Changes for long file support by Steve Clift. | Guido van Rossum | 1999-01-06 | 1 | -18/+0 |
|
|
* | Remove unreachable code. (Sjoerd) | Guido van Rossum | 1998-10-09 | 1 | -8/+0 |
|
|
* | Patches from Greg Stein to support 'P' format in struct module's | Guido van Rossum | 1998-09-18 | 1 | -0/+55 |
|
|
* | Undo victim of careless global substitute ("long long_hash" was | Guido van Rossum | 1998-09-13 | 1 | -1/+1 |
|
|
* | Patch by Mark Hammond to support 64-bit ints on MS platforms. | Guido van Rossum | 1998-08-25 | 1 | -22/+22 |
|
|
* | Two patches by Jason Harper: | Guido van Rossum | 1998-08-11 | 1 | -37/+96 |
|
|
* | Changes for BeOS, QNX and long long, by Chris Herborth. | Guido van Rossum | 1998-08-04 | 1 | -0/+192 |
|
|
* | Fix a potential problem in PyLong_FromString(): could fall through the | Guido van Rossum | 1998-08-04 | 1 | -0/+2 |
|
|