| Commit message (Expand) | Author | Age | Files | Lines |
* | use assert[Not]In where appropriate | Ezio Melotti | 2010-01-23 | 1 | -9/+6 |
|
|
* | use assert[Not]In where appropriate | Benjamin Peterson | 2010-01-19 | 1 | -13/+13 |
|
|
* | Issue #7105: Make WeakKeyDictionary and WeakValueDictionary robust against | Antoine Pitrou | 2010-01-08 | 1 | -0/+87 |
|
|
* | fix __bytes__ handling here in py3x | Benjamin Peterson | 2009-11-19 | 1 | -0/+11 |
|
|
* | convert old fail* assertions to assert* | Benjamin Peterson | 2009-06-30 | 1 | -82/+82 |
|
|
* | Issue #6149: Fix initialization of WeakValueDictionary objects from non-empty... | Antoine Pitrou | 2009-05-30 | 1 | -0/+11 |
|
|
* | Merged revisions 66337,66347,66350,66352,66358 via svnmerge from | Benjamin Peterson | 2008-09-10 | 1 | -0/+8 |
|
|
* | Committing the patch in issue 2965, so that weakref dicts have a closer | Barry Warsaw | 2008-09-04 | 1 | -12/+12 |
|
|
* | Merged revisions 64309 via svnmerge from | Amaury Forgeot d'Arc | 2008-06-16 | 1 | -1/+40 |
|
|
* | Merged revisions 63412,63445-63447,63449-63450,63452,63454,63459,63463,63465,... | Georg Brandl | 2008-05-25 | 1 | -1/+22 |
|
|
* | #2621 rename test.test_support to test.support | Benjamin Peterson | 2008-05-20 | 1 | -3/+3 |
|
|
* | Move UserList to collections. | Raymond Hettinger | 2008-02-12 | 1 | -4/+4 |
|
|
* | Patch from Georg Brandl and me for #1493 | Christian Heimes | 2007-11-25 | 1 | -5/+0 |
|
|
* | Patch by Christian Heimes to change self.assert_(x == y) into | Guido van Rossum | 2007-07-11 | 1 | -14/+14 |
|
|
* | Merged revisions 56125-56153 via svnmerge from | Guido van Rossum | 2007-07-03 | 1 | -6/+6 |
|
|
* | Merged revisions 55817-55961 via svnmerge from | Guido van Rossum | 2007-06-13 | 1 | -4/+4 |
|
|
* | Merged revisions 53952-54987 via svnmerge from | Guido van Rossum | 2007-04-27 | 1 | -2/+2 |
|
|
* | Remove the exceptions builtin module, all the exceptions are already builtin. | Neal Norwitz | 2007-02-26 | 1 | -3/+3 |
|
|
* | Nailed test_weakref.py. Pfew, messy! | Guido van Rossum | 2007-02-11 | 1 | -3/+3 |
|
|
* | - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone; | Guido van Rossum | 2007-02-11 | 1 | -5/+5 |
|
|
* | Fix a bunch of doctests with the -d option of refactor.py. | Guido van Rossum | 2007-02-09 | 1 | -4/+4 |
|
|
* | Merged revisions 53451-53537 via svnmerge from | Thomas Wouters | 2007-02-01 | 1 | -0/+14 |
|
|
* | Merged revisions 53005-53303 via svnmerge from | Thomas Wouters | 2007-01-09 | 1 | -1/+1 |
|
|
* | Remove usage of backticks. | Brett Cannon | 2006-08-25 | 1 | -2/+2 |
|
|
* | Restructure comparison dramatically. There is no longer a default | Guido van Rossum | 2006-08-24 | 1 | -0/+6 |
|
|
* | Get rid of dict.has_key(). Boy this has a lot of repercussions! | Guido van Rossum | 2006-08-18 | 1 | -10/+10 |
|
|
* | Get rid of most of the flags (in tp_flags) that keep track of various | Guido van Rossum | 2006-07-27 | 1 | -2/+1 |
|
|
* | Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svn | Thomas Wouters | 2006-06-08 | 1 | -2/+2 |
|
|
* | Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. | Thomas Wouters | 2006-05-27 | 1 | -0/+44 |
|
|
* | Add doctest for examples in libweakref.tex to test_weakref. | Georg Brandl | 2005-07-02 | 1 | -0/+86 |
|
|
* | SF bug #1770766: weakref proxy has incorrect __nonzero__ behavior. | Raymond Hettinger | 2005-03-27 | 1 | -0/+6 |
|
|
* | SF bug #978308, Spurious errors taking bool of dead pro | Neal Norwitz | 2004-07-08 | 1 | -0/+1 |
|
|
* | Make weak references subclassable: | Fred Drake | 2004-07-02 | 1 | -0/+66 |
|
|
* | Rename class attribute containing the class to be tested, so the name is the | Walter Dörwald | 2004-06-02 | 1 | -2/+2 |
|
|
* | Port the dictionary tests from test_types.py to unittest. Collect as much | Walter Dörwald | 2004-05-31 | 1 | -3/+3 |
|
|
* | further testing indicates that the simplified version of the test | Fred Drake | 2004-02-13 | 1 | -4/+6 |
|
|
* | use existing test object instead of defining a new class | Fred Drake | 2004-02-12 | 1 | -5/+3 |
|
|
* | Replace backticks with repr() or "%r" | Walter Dörwald | 2004-02-12 | 1 | -1/+1 |
|
|
* | Allocating a new weakref object can cause existing weakref objects for | Fred Drake | 2004-02-04 | 1 | -0/+32 |
|
|
* | - add tests that exercise fixes for the PyWeakref_NewRef() and | Fred Drake | 2004-02-03 | 1 | -0/+41 |
|
|
* | Add tests to test_weakref.py to bring code coverage in _weakref.c up to 100%. | Walter Dörwald | 2003-12-11 | 1 | -0/+8 |
|
|
* | SF bug 839548: Bug in type's GC handling causes segfaults. | Tim Peters | 2003-11-20 | 1 | -0/+205 |
|
|
* | * Migrate set() and frozenset() from the sandbox. | Raymond Hettinger | 2003-11-16 | 1 | -2/+1 |
|
|
* | subtype_dealloc(): A more complete fix for critical bug 840829 + | Tim Peters | 2003-11-13 | 1 | -0/+19 |
|
|
* | SF bug 840829: weakref callbacks and gc corrupt memory. | Tim Peters | 2003-11-12 | 1 | -0/+20 |
|
|
* | stylistic nits: | Fred Drake | 2003-07-14 | 1 | -6/+8 |
|
|
* | Fix SF 762891: "del p[key]" on proxy object raises SystemError() | Raymond Hettinger | 2003-06-30 | 1 | -0/+11 |
|
|
* | Fleshed out WeakKeyDictionary.__delitem__ NEWS to cover issues raised on | Tim Peters | 2003-05-25 | 1 | -2/+10 |
|
|
* | SF 742860: WeakKeyDictionary __delitem__ uses iterkeys | Tim Peters | 2003-05-25 | 1 | -0/+51 |
|
|
* | Used sets.Set() to compare unordered sequences. | Raymond Hettinger | 2003-05-02 | 1 | -3/+2 |
|
|