| Commit message (Expand) | Author | Age | Files | Lines |
* | Remove duplicate test | Neal Norwitz | 2002-11-23 | 1 | -2/+0 |
|
|
* | Patch #642500 with slight modifications: allow keyword arguments in | Just van Rossum | 2002-11-23 | 1 | -11/+12 |
|
|
* | Fix or disable some tests that were affected by the new C3 MRO | Guido van Rossum | 2002-11-14 | 1 | -20/+79 |
|
|
* | Fix SF # 624982, Potential AV in slot_sq_item, by Greg Chapman | Neal Norwitz | 2002-10-18 | 1 | -0/+12 |
|
|
* | For some reason (probably cut and paste), __ipow__ for new-style | Guido van Rossum | 2002-10-15 | 1 | -0/+11 |
|
|
* | Code by Inyeol Lee, submitted to SF bug 595350, to implement | Guido van Rossum | 2002-08-23 | 1 | -4/+0 |
|
|
* | Add tests for including __dict__ and/or __weakref__ in __slots__. | Guido van Rossum | 2002-08-13 | 1 | -1/+50 |
|
|
* | Add test for SF bug # 575229, multiple inheritance w/ slots dumps core | Neal Norwitz | 2002-08-13 | 1 | -0/+11 |
|
|
* | Disallow class assignment completely unless both old and new are heap | Guido van Rossum | 2002-08-10 | 1 | -0/+5 |
|
|
* | Test for Neil's fix to correctly invoke __rmul__. | Guido van Rossum | 2002-08-09 | 1 | -0/+16 |
|
|
* | Add testcase for SF bug 574207 (chained __slots__ dealloc segfault). | Guido van Rossum | 2002-08-06 | 1 | -0/+14 |
|
|
* | SF patch 588728 (Nathan Srebro). | Guido van Rossum | 2002-08-01 | 1 | -4/+11 |
|
|
* | Get rid of relative imports in all unittests. Now anything that | Barry Warsaw | 2002-07-23 | 1 | -1/+1 |
|
|
* | subtype_resurrection(): Removed unused import. | Tim Peters | 2002-07-11 | 1 | -1/+0 |
|
|
* | subtype_resurrection(): The test suite with -l properly reported the | Tim Peters | 2002-07-11 | 1 | -2/+13 |
|
|
* | Repaired optimistic comment in new test. | Tim Peters | 2002-07-11 | 1 | -4/+3 |
|
|
* | Added a test that provokes the hypothesized (in my last checkin comment) | Tim Peters | 2002-07-11 | 1 | -0/+20 |
|
|
* | Fix SF bug 572567: Memory leak in object comparison. | Raymond Hettinger | 2002-06-24 | 1 | -0/+12 |
|
|
* | SF 569257 -- Name mangle double underscored variable names in __slots__. | Raymond Hettinger | 2002-06-20 | 1 | -0/+18 |
|
|
* | Patch from SF bug 570483 (Tim Northover). | Guido van Rossum | 2002-06-18 | 1 | -0/+6 |
|
|
* | Test for the bug in recurse_down_subclasses() that I just fixed. | Guido van Rossum | 2002-06-14 | 1 | -0/+10 |
|
|
* | Hopefully this addresses the remaining issues of SF bugs 459235 and | Guido van Rossum | 2002-06-13 | 1 | -0/+46 |
|
|
* | Fix from SF patch 565085: copy._reduction doesn't __setstate__. | Guido van Rossum | 2002-06-06 | 1 | -0/+29 |
|
|
* | Address SF bug 519621: slots weren't traversed by GC. | Guido van Rossum | 2002-06-04 | 1 | -0/+51 |
|
|
* | Test repair now that module.__init__ requires a name and initializes | Guido van Rossum | 2002-06-04 | 1 | -6/+7 |
|
|
* | The warning filter was ineffective when this module was invoked as a | Guido van Rossum | 2002-06-03 | 1 | -1/+1 |
|
|
* | Fix for SF bug 551412. When _PyType_Lookup() is called on a type | Guido van Rossum | 2002-05-24 | 1 | -0/+16 |
|
|
* | Jim Fulton reported a segfault in dir(). A heavily proxied object | Guido van Rossum | 2002-05-13 | 1 | -0/+20 |
|
|
* | ceval.c/do_raise(): Tighten the test to disallow raising an instance of | Tim Peters | 2002-04-18 | 1 | -0/+26 |
|
|
* | SF bug 542984. | Guido van Rossum | 2002-04-18 | 1 | -0/+20 |
|
|
* | SF bug 544647. | Guido van Rossum | 2002-04-16 | 1 | -0/+27 |
|
|
* | Fewer deprecation warnings. | Tim Peters | 2002-04-16 | 1 | -0/+5 |
|
|
* | SF bug #541883 (Vincent Fiack). | Guido van Rossum | 2002-04-15 | 1 | -0/+6 |
|
|
* | - Changed new-style class instantiation so that when C's __new__ | Guido van Rossum | 2002-04-06 | 1 | -0/+22 |
|
|
* | Add the 'bool' type and its values 'False' and 'True', as described in | Guido van Rossum | 2002-04-03 | 1 | -1/+1 |
|
|
* | SF patch 537536 by Phillip J. Eby, fix for SF bug 535444, super() | Guido van Rossum | 2002-04-02 | 1 | -0/+8 |
|
|
* | There is no TestError, use TestFailed appropriately | Neal Norwitz | 2002-04-01 | 1 | -1/+1 |
|
|
* | Add a simple test of the METH_CLASS and METH_STATIC flags for type methods. | Fred Drake | 2002-03-28 | 1 | -0/+30 |
|
|
* | Add tests for the iterkeys, itervalues and iteritems | Walter Dörwald | 2002-03-25 | 1 | -0/+29 |
|
|
* | Fix for SF bug 528132 (Armin Rigo): classmethod().__get__() segfault | Guido van Rossum | 2002-03-18 | 1 | -0/+5 |
|
|
* | "Fix" for SF bug #520644: __slots__ are not pickled. | Guido van Rossum | 2002-03-14 | 1 | -0/+89 |
|
|
* | Test for the fix I just checked in to moduleobject.c. | Guido van Rossum | 2002-03-12 | 1 | -0/+12 |
|
|
* | Fix typo | Neal Norwitz | 2002-03-11 | 1 | -1/+1 |
|
|
* | Add a check that SF bug 516727 is really fixed. | Guido van Rossum | 2002-03-11 | 1 | -0/+10 |
|
|
* | Bugfix candidate. | Guido van Rossum | 2002-03-11 | 1 | -0/+3 |
|
|
* | _PyLong_Copy(): was creating a copy of the absolute value, but should | Tim Peters | 2002-03-02 | 1 | -0/+1 |
|
|
* | SF patch 514641 (Naofumi Honda) - Negative ob_size of LongObjects | Guido van Rossum | 2002-03-01 | 1 | -0/+4 |
|
|
* | Fix for SF bug ##497426: can't deepcopy recursive new objects | Guido van Rossum | 2001-12-28 | 1 | -1/+10 |
|
|
* | (Merge into trunk.) | Guido van Rossum | 2001-12-14 | 1 | -0/+10 |
|
|
* | Additional coverage tests by Neil Norwitz. | Guido van Rossum | 2001-12-11 | 1 | -0/+66 |
|
|