| Commit message (Expand) | Author | Age | Files | Lines |
* | Implement another useful feature for proxies: in super(X, x), x may | Guido van Rossum | 2003-02-12 | 1 | -17/+83 |
|
|
* | Add missing cast in previous fix. | Guido van Rossum | 2003-02-12 | 1 | -1/+2 |
|
|
* | SF #532767: isinstance(x, X) should work when x is a proxy for an X | Guido van Rossum | 2003-02-12 | 1 | -6/+19 |
|
|
* | Add more missing PyErr_NoMemory() after failled memory allocs | Neal Norwitz | 2003-02-11 | 1 | -1/+1 |
|
|
* | Fix from SF #681367: inherit tp_as_buffer. This only applies to C | Guido van Rossum | 2003-02-11 | 1 | -0/+2 |
|
|
* | Put proper tests in classmethod_get(). Remove the type argument to | Guido van Rossum | 2003-02-11 | 1 | -16/+47 |
|
|
* | Refactor instancemethod_descr_get() to (a) be more clear, (b) be safe | Guido van Rossum | 2003-02-11 | 1 | -8/+18 |
|
|
* | Inline create_specialmethod() -- since METH_CLASS is done differently | Guido van Rossum | 2003-02-11 | 1 | -15/+5 |
|
|
* | Add basic arg sanity checking to wrap_descr_get(). This is called | Guido van Rossum | 2003-02-11 | 1 | -0/+9 |
|
|
* | Get rid of the "bozo" __getstate__ that was inserted when __slots__ | Guido van Rossum | 2003-02-10 | 1 | -32/+0 |
|
|
* | Fold long lines. | Guido van Rossum | 2003-02-10 | 1 | -4/+7 |
|
|
* | Fix SF bug #683467, 'int' ability to generate longs not inherited | Neal Norwitz | 2003-02-10 | 1 | -2/+16 |
|
|
* | Fix two refcounting bugs | Walter Dörwald | 2003-02-09 | 1 | -2/+4 |
|
|
* | SF patch #683187, fix universal newline problems on error | Neal Norwitz | 2003-02-09 | 1 | -1/+4 |
|
|
* | Comment typo fix | Andrew M. Kuchling | 2003-02-06 | 1 | -1/+1 |
|
|
* | Fix for SF #668433. I'm not explaining it here; ample comments are in | Guido van Rossum | 2003-02-05 | 1 | -0/+93 |
|
|
* | Refactor the logic for setting f_builtins. | Jeremy Hylton | 2003-02-05 | 1 | -24/+31 |
|
|
* | SF bug 681122: Built-in function dir() causes refcount leak in baseclasses. | Tim Peters | 2003-02-05 | 1 | -1/+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 |
|
|
* | Removed all uses of the out-of-favor __safe_for_unpickling__ magic | Tim Peters | 2003-02-01 | 1 | -1/+0 |
|
|
* | Squash compiler wng about signed/unsigned comparison mismatch. | Tim Peters | 2003-01-31 | 1 | -1/+1 |
|
|
* | Provide __module__ attributes for functions defined in C and Python. | Jeremy Hylton | 2003-01-31 | 2 | -6/+68 |
|
|
* | Change the treatment of positions returned by PEP293 | Walter Dörwald | 2003-01-31 | 1 | -9/+17 |
|
|
* | _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 | 7 | -4/+72 |
|
|
* | Added new private API function _PyLong_NumBits. This will be used at the | Tim Peters | 2003-01-28 | 1 | -0/+35 |
|
|
* | Fix SF bug# 676155, RuntimeWarning with tp_compare | Neal Norwitz | 2003-01-28 | 1 | -1/+4 |
|
|
* | Recursive compare machinery: The code that intended to exempt tuples | Tim Peters | 2003-01-20 | 1 | -9/+14 |
|
|
* | SF # 669553, fix memory (ref) leaks | Neal Norwitz | 2003-01-19 | 1 | -1/+8 |
|
|
* | SF patch #664192 bug #661913: inconsistent error messages between string | Raymond Hettinger | 2003-01-15 | 1 | -2/+2 |
|
|
* | Fix SF bug #667147, Segmentation fault printing str subclass | Neal Norwitz | 2003-01-13 | 1 | -3/+16 |
|
|
* | Fix charmapencode_lookup(), so that a None value in the mapping | Walter Dörwald | 2003-01-08 | 1 | -0/+2 |
|
|
* | Remove variable owned from PyUnicode_FromEncodedObject, which is unused | Walter Dörwald | 2003-01-08 | 1 | -7/+0 |
|
|
* | Fix for SF bug #642358: only provide a new with a __dict__ or | Guido van Rossum | 2003-01-07 | 1 | -4/+24 |
|
|
* | Add a refinement to SLOT1BINFULL() that fixes the problem reported in | Guido van Rossum | 2003-01-06 | 1 | -1/+36 |
|
|
* | GvR's idea to use memset() for the most common special case of repeating | Raymond Hettinger | 2003-01-06 | 1 | -1/+5 |
|
|
* | Optimize string_repeat. | Raymond Hettinger | 2003-01-06 | 1 | -2/+11 |
|
|
* | PyCFunction_Call(): Combined two switch cases w/ identical bodies. | Tim Peters | 2003-01-05 | 1 | -4/+2 |
|
|
* | SF Patch #661440: Refactor and streamline PyCFunction_Call | Raymond Hettinger | 2003-01-04 | 1 | -31/+41 |
|
|
* | Grammatical fix in comment. | Greg Ward | 2003-01-03 | 1 | -1/+1 |
|
|
* | Allow PyFile_GetLine() to return Unicode objects. Fixes #660165. | Martin v. Löwis | 2003-01-03 | 1 | -1/+24 |
|
|
* | Allow list sort's comparison function to explicitly be None. See SF patch | Skip Montanaro | 2003-01-02 | 1 | -1/+4 |
|
|
* | Merge to trunk from release branch: | Guido van Rossum | 2002-12-31 | 1 | -0/+1 |
|
|
* | Fix an out-of-bound index in pmerge() discovered by Zooko (SF bug | Guido van Rossum | 2002-12-31 | 1 | -1/+2 |
|
|
* | Since the *_Init() are private, prefix with _, suggested by Skip | Neal Norwitz | 2002-12-31 | 2 | -2/+2 |
|
|
* | SF #561244, Micro optimizations | Neal Norwitz | 2002-12-30 | 2 | -19/+36 |
|
|