| Commit message (Expand) | Author | Age | Files | Lines |
* | Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svn | Thomas Wouters | 2006-06-08 | 1 | -3/+74 |
|
|
* | Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. | Thomas Wouters | 2006-05-27 | 1 | -59/+210 |
|
|
* | Merge p3yk branch with the trunk up to revision 45595. This breaks a fair | Thomas Wouters | 2006-04-21 | 1 | -35/+53 |
|
|
* | Get rid of remnants of integer division | Neal Norwitz | 2006-03-24 | 1 | -18/+0 |
|
|
* | Checking in the code for PEP 357. | Guido van Rossum | 2006-03-07 | 1 | -7/+42 |
|
|
* | SF #1444030: Fix several potential defects found by Coverity. | Hye-Shik Chang | 2006-03-07 | 1 | -1/+7 |
|
|
* | Revert backwards-incompatible const changes. | Martin v. Löwis | 2006-02-27 | 1 | -1/+1 |
|
|
* | Merge ssize_t branch. | Martin v. Löwis | 2006-02-15 | 1 | -55/+133 |
|
|
* | As discussed on python-dev, silence three gcc-4.0.x warnings, using assert() | Thomas Wouters | 2006-02-01 | 1 | -2/+9 |
|
|
* | Add const to several API functions that take char *. | Jeremy Hylton | 2005-12-10 | 1 | -1/+2 |
|
|
* | SF bug #1238681: freed pointer is used in longobject.c:long_pow(). | Tim Peters | 2005-07-17 | 1 | -5/+8 |
|
|
* | SF bug #1224347: int/long unification and hex() | Raymond Hettinger | 2005-06-29 | 1 | -2/+2 |
|
|
* | Make subclasses of int, long, complex, float, and unicode perform type | Brett Cannon | 2005-04-26 | 1 | -1/+4 |
|
|
* | Revert previous checkin on getargs 'L' code. Try to convert all | Martin v. Löwis | 2005-03-03 | 1 | -1/+22 |
|
|
* | Patch #1024670: Support int objects in PyLong_AsUnsignedLong[Mask]. | Martin v. Löwis | 2004-09-20 | 1 | -0/+11 |
|
|
* | long_pow(): Fix more instances of leaks in error cases. | Tim Peters | 2004-08-30 | 1 | -3/+3 |
|
|
* | SF patch 936813: fast modular exponentiation | Tim Peters | 2004-08-30 | 1 | -107/+185 |
|
|
* | SF patch 936813: fast modular exponentiation | Tim Peters | 2004-08-29 | 1 | -21/+79 |
|
|
* | SF patch 703666: Several objects don't decref tmp on failure in subtype_new | Raymond Hettinger | 2003-06-28 | 1 | -1/+3 |
|
|
* | SF patch 730594: assert from longobject.c, line 1215. | Tim Peters | 2003-05-05 | 1 | -4/+4 |
|
|
* | Silence compiler warnings in VC 7. | Jeremy Hylton | 2003-05-01 | 1 | -2/+2 |
|
|
* | SF # 595026: support for masks in getargs.c. | Thomas Heller | 2003-04-17 | 1 | -0/+55 |
|
|
* | Rename LONG_LONG to PY_LONG_LONG. Fixes #710285. | Martin v. Löwis | 2003-03-29 | 1 | -22/+22 |
|
|
* | Fix SF bug #689659, 64-bit int and long hash keys incompatible | Neal Norwitz | 2003-02-23 | 1 | -2/+4 |
|
|
* | _PyLong_Sign(): remove an assert that needed a variable ndigits that | Guido van Rossum | 2003-02-03 | 1 | -3/+2 |
|
|
* | long_from_binary_base(): Sped this a little by computing the # of bits | Tim Peters | 2003-02-02 | 1 | -6/+6 |
|
|
* | Tightened a too-generous assert. | Tim Peters | 2003-02-02 | 1 | -1/+1 |
|
|
* | long(string, base) now takes time linear in len(string) when base is a | Tim Peters | 2003-02-02 | 1 | -15/+108 |
|
|
* | cPickle.c: Full support for the new LONG1 and LONG4. Added comments. | Tim Peters | 2003-02-02 | 1 | -2/+2 |
|
|
* | Squash compiler wng about signed/unsigned comparison mismatch. | Tim Peters | 2003-01-31 | 1 | -1/+1 |
|
|
* | _PyLong_NumBits(): The definition of this was too specific to the quirky | Tim Peters | 2003-01-31 | 1 | -8/+17 |
|
|
* | Implement appropriate __getnewargs__ for all immutable subclassable builtin | Guido van Rossum | 2003-01-29 | 1 | -1/+12 |
|
|
* | Added new private API function _PyLong_NumBits. This will be used at the | Tim Peters | 2003-01-28 | 1 | -0/+35 |
|
|
* | Consolidate the int and long sequence repeat code. Before the change, | Neil Schemenauer | 2002-12-30 | 1 | -19/+0 |
|
|
* | Change int() so that passing a string, unicode, float or long argument | Walter Dörwald | 2002-11-19 | 1 | -9/+20 |
|
|
* | Make int("...") return a long if an int would overflow. | Walter Dörwald | 2002-11-06 | 1 | -8/+10 |
|
|
* | replace thread state objects' ticker and checkinterval fields with two | Skip Montanaro | 2002-09-03 | 1 | -4/+2 |
|
|
* | long_format(), long_lshift(): Someone on c.l.py is trying to boost | Tim Peters | 2002-08-20 | 1 | -2/+2 |
|
|
* | Illustrating by example one good reason not to trust a proof <wink>. | Tim Peters | 2002-08-15 | 1 | -3/+3 |
|
|
* | k_mul() comments: In honor of Dijkstra, made the proof that "t3 fits" | Tim Peters | 2002-08-15 | 1 | -34/+37 |
|
|
* | long_mul(): Simplified exit code. In particular, k_mul() returns a | Tim Peters | 2002-08-15 | 1 | -9/+3 |
|
|
* | k_mul() comments: Simplified the simplified explanation of why ah*bh and | Tim Peters | 2002-08-14 | 1 | -6/+3 |
|
|
* | k_mul() comments: Explained why there's always enough room to subtract | Tim Peters | 2002-08-14 | 1 | -0/+7 |
|
|
* | Fixed error in new comment. | Tim Peters | 2002-08-13 | 1 | -4/+3 |
|
|
* | k_mul(): The fix for (ah+al)*(bh+bl) spilling 1 bit beyond the allocated | Tim Peters | 2002-08-13 | 1 | -8/+44 |
|
|
* | Fix comment for PyLong_AsUnsignedLong() to say that the return value | Guido van Rossum | 2002-08-13 | 1 | -1/+1 |
|
|
* | k_lopsided_mul(): This allocated more space for bslice than necessary. | Tim Peters | 2002-08-12 | 1 | -1/+1 |
|
|
* | Added new function k_lopsided_mul(), which is much more efficient than | Tim Peters | 2002-08-12 | 1 | -10/+72 |
|
|
* | k_mul(): Moved an assert down. In a debug build, interrupting a | Tim Peters | 2002-08-12 | 1 | -2/+2 |
|
|
* | k_mul(): Heh -- I checked in two fixes for the last problem. Only keep | Tim Peters | 2002-08-12 | 1 | -2/+2 |
|
|