| Commit message (Expand) | Author | Age | Files | Lines |
* | Require that __nonzero__() return a bool or exactly an int. | Jeremy Hylton | 2003-06-27 | 1 | -6/+2 |
|
|
* | Check return type of __nonzero__() method. | Jeremy Hylton | 2003-06-27 | 1 | -1/+13 |
|
|
* | - SF patch 751998 fixes an unwanted side effect of the previous fix | Guido van Rossum | 2003-06-13 | 1 | -5/+13 |
|
|
* | Fixed a comment. | Brett Cannon | 2003-06-11 | 1 | -1/+1 |
|
|
* | Fix SF #749831, copy raises SystemError when getstate raises exception | Neal Norwitz | 2003-06-08 | 1 | -0/+2 |
|
|
* | Fix for SF 742911. We now clear the weakrefs *before* calling __del__ | Guido van Rossum | 2003-05-29 | 1 | -11/+12 |
|
|
* | PyType_Ready(): Complain if the type is a base type, and gc'able, and | Tim Peters | 2003-05-21 | 1 | -1/+31 |
|
|
* | Fixing the previous patch to have the changes be to the proper docstrings. | Brett Cannon | 2003-05-20 | 1 | -8/+8 |
|
|
* | Fix docstrings for __(get|set|del)slice__ to mention that negative indices ar... | Brett Cannon | 2003-05-20 | 1 | -3/+9 |
|
|
* | Patch #734231: Update RiscOS support. In particular, correct | Martin v. Löwis | 2003-05-10 | 1 | -1/+1 |
|
|
* | Improve the message about metatype/metaclass conflicts. | Guido van Rossum | 2003-04-23 | 1 | -1/+4 |
|
|
* | Sigh. The crucial change was still missing from the previous | Guido van Rossum | 2003-04-16 | 1 | -1/+1 |
|
|
* | - super() no longer ignores data descriptors, except __class__. See | Guido van Rossum | 2003-04-16 | 1 | -4/+10 |
|
|
* | Fix three (!) object leaks in the code for assignment to __bases__. | Guido van Rossum | 2003-04-15 | 1 | -1/+3 |
|
|
* | Ouch, it's Carlo Verre, not Verre Carlo. | Guido van Rossum | 2003-04-15 | 1 | -1/+1 |
|
|
* | Close off the "Verre Carlo hack" as discussed on python-dev. | Guido van Rossum | 2003-04-14 | 1 | -0/+22 |
|
|
* | super_getattro(): kill some dead code; explain a mystery. | Guido van Rossum | 2003-04-14 | 1 | -18/+4 |
|
|
* | Missing DECREF. | Jeremy Hylton | 2003-04-09 | 1 | -0/+1 |
|
|
* | SF bug #699934: Obscure error message | Raymond Hettinger | 2003-04-06 | 1 | -4/+2 |
|
|
* | Refactoring: rename update_these_slots() into update_subclasses() and | Guido van Rossum | 2003-03-24 | 1 | -47/+68 |
|
|
* | Improved new Py_TRACE_REFS gimmicks. | Tim Peters | 2003-03-23 | 1 | -4/+1 |
|
|
* | slot_sq_contains(): This leaked a reference to the result of calling | Tim Peters | 2003-03-23 | 1 | -11/+12 |
|
|
* | Refactored some of the Py_TRACE_REFS code. New private API function | Tim Peters | 2003-03-23 | 1 | -0/+12 |
|
|
* | SF bug #699934: Obscure error message | Raymond Hettinger | 2003-03-12 | 1 | -1/+4 |
|
|
* | - The extended type structure used for heap types (new-style | Guido van Rossum | 2003-03-07 | 1 | -49/+34 |
|
|
* | Implementing the salient parts of __reduce_ex__ in C. | Guido van Rossum | 2003-02-21 | 1 | -6/+229 |
|
|
* | Introducing __reduce_ex__, which is called with a protocol number argument | Guido van Rossum | 2003-02-18 | 1 | -4/+10 |
|
|
* | Removed unreferenced label. | Tim Peters | 2003-02-18 | 1 | -2/+1 |
|
|
* | The recent changes to super(), in particular supercheck(), broke when | Guido van Rossum | 2003-02-18 | 1 | -9/+7 |
|
|
* | SF patch #685738 by Michael Stone. | Guido van Rossum | 2003-02-13 | 1 | -1/+19 |
|
|
* | Implement another useful feature for proxies: in super(X, x), x may | Guido van Rossum | 2003-02-12 | 1 | -17/+83 |
|
|
* | Fix from SF #681367: inherit tp_as_buffer. This only applies to C | Guido van Rossum | 2003-02-11 | 1 | -0/+2 |
|
|
* | 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 |
|
|
* | 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 |
|
|
* | 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 |
|
|
* | Fix an out-of-bound index in pmerge() discovered by Zooko (SF bug | Guido van Rossum | 2002-12-31 | 1 | -1/+2 |
|
|
* | Punctuation fix. | Raymond Hettinger | 2002-12-14 | 1 | -2/+2 |
|
|
* | Tighten the tests for assignment to __bases__: disallow empty tuple. | Guido van Rossum | 2002-12-13 | 1 | -0/+6 |
|
|
* | SF 548651: Fix the METH_CLASS implementation. | Tim Peters | 2002-12-09 | 1 | -1/+1 |
|
|
* | slot_nb_nonzero(): Another leak uncovered by the sandbox datetime | Tim Peters | 2002-12-07 | 1 | -28/+27 |
|
|
* | slot_tp_hash(): In the normal path, this leaked a reference to the | Tim Peters | 2002-12-06 | 1 | -3/+3 |
|
|
* | Nudge getting __module__ and __name__ for new-style classes so that | Michael W. Hudson | 2002-11-27 | 1 | -17/+24 |
|
|
* | I don't know why staring at the email to python-checkins made me | Michael W. Hudson | 2002-11-27 | 1 | -9/+14 |
|
|
* | Readjustments to the way we cope with exceptions from subclasses' | Michael W. Hudson | 2002-11-27 | 1 | -10/+32 |
|
|
* | I had the inheritance cycle stuff backwards. Oops! | Michael W. Hudson | 2002-11-27 | 1 | -4/+6 |
|
|
* | Initialize a variable. Hope this makes things work for Guido. | Michael W. Hudson | 2002-11-26 | 1 | -1/+1 |
|
|