summaryrefslogtreecommitdiff
path: root/Lib/test/test_weakref.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #8268: Old-style classes (not just instances) now support weakAntoine Pitrou2010-03-311-0/+20
* #7092 - Silence more py3k deprecation warnings, using test_support.check_py3k...Florent Xicluna2010-03-211-28/+28
* use assert[Not]In where appropriateEzio Melotti2010-01-231-9/+8
* Reverting the Revision: 77368. I committed Flox's big patch for tests bySenthil Kumaran2010-01-081-20/+17
* Fixing - Issue7026 - RuntimeError: dictionary changed size during iteration. ...Senthil Kumaran2010-01-081-17/+20
* #5037 proxy __unicode__ correctlyBenjamin Peterson2009-11-191-0/+11
* convert usage of fail* to assert*Benjamin Peterson2009-06-301-105/+105
* Fix #3634 invalid return value from _weakref.ref(Exception).__init__Benjamin Peterson2008-09-091-0/+8
* Issue 3110: Crash with weakref subclass,Amaury Forgeot d'Arc2008-06-161-1/+40
* #2592: delegate nb_index and the floor/truediv slots in weakref.proxy.Georg Brandl2008-05-201-1/+22
* Fix crasher for when an object's __del__ creates a new weakref to itself.Brett Cannon2007-01-231-0/+14
* Fix typo.Walter Dörwald2006-12-121-1/+1
* ("Forward-port" of r46506)Armin Rigo2006-05-281-2/+2
* SF #1479988: add methods to allow access to weakrefs for theFred Drake2006-05-021-0/+44
* Add doctest for examples in libweakref.tex to test_weakref.Georg Brandl2005-07-021-0/+86
* SF bug #1770766: weakref proxy has incorrect __nonzero__ behavior.Raymond Hettinger2005-03-271-0/+6
* SF bug #978308, Spurious errors taking bool of dead proNeal Norwitz2004-07-081-0/+1
* Make weak references subclassable:Fred Drake2004-07-021-0/+66
* Rename class attribute containing the class to be tested, so the name is theWalter Dörwald2004-06-021-2/+2
* Port the dictionary tests from test_types.py to unittest. Collect as muchWalter Dörwald2004-05-311-3/+3
* further testing indicates that the simplified version of the testFred Drake2004-02-131-4/+6
* use existing test object instead of defining a new classFred Drake2004-02-121-5/+3
* Replace backticks with repr() or "%r"Walter Dörwald2004-02-121-1/+1
* Allocating a new weakref object can cause existing weakref objects forFred Drake2004-02-041-0/+32
* - add tests that exercise fixes for the PyWeakref_NewRef() andFred Drake2004-02-031-0/+41
* Add tests to test_weakref.py to bring code coverage in _weakref.c up to 100%.Walter Dörwald2003-12-111-0/+8
* SF bug 839548: Bug in type's GC handling causes segfaults.Tim Peters2003-11-201-0/+205
* * Migrate set() and frozenset() from the sandbox.Raymond Hettinger2003-11-161-2/+1
* subtype_dealloc(): A more complete fix for critical bug 840829 +Tim Peters2003-11-131-0/+19
* SF bug 840829: weakref callbacks and gc corrupt memory.Tim Peters2003-11-121-0/+20
* stylistic nits:Fred Drake2003-07-141-6/+8
* Fix SF 762891: "del p[key]" on proxy object raises SystemError()Raymond Hettinger2003-06-301-0/+11
* Fleshed out WeakKeyDictionary.__delitem__ NEWS to cover issues raised onTim Peters2003-05-251-2/+10
* SF 742860: WeakKeyDictionary __delitem__ uses iterkeysTim Peters2003-05-251-0/+51
* Used sets.Set() to compare unordered sequences.Raymond Hettinger2003-05-021-3/+2
* Combine the functionality of test_support.run_unittest()Walter Dörwald2003-05-011-6/+6
* SF patch #667730: More DictMixinRaymond Hettinger2003-03-091-0/+17
* Standardize behavior: no docstrings in test functions. Also useGuido van Rossum2002-08-221-6/+4
* Get rid of relative imports in all unittests. Now anything thatBarry Warsaw2002-07-231-1/+1
* SF patch 564549 (Erik Andersén).Guido van Rossum2002-06-101-0/+11
* Improve coverage of Objects/weakrefobject.c.Fred Drake2002-04-111-0/+16
* Add some additional tests that check more proxy behaviors.Fred Drake2001-12-191-0/+18
* Regression test for SF bug #478534 -- exceptions could "leak" into a weakrefFred Drake2001-12-101-0/+25
* Add a regression test for SF bug #478536: If a value cannot be weaklyFred Drake2001-11-061-1/+5
* Add a test for calling a weakref proxy with a dictionary of keyword args.Fred Drake2001-10-181-0/+3
* Make sure we do not core dump when using proxies with the binary slotFred Drake2001-10-181-0/+8
* Change the PyUnit-based tests to use the test_main() approach. ThisFred Drake2001-09-201-3/+11
* Added tests for key deletion for both Weak*Dictionary flavors.Fred Drake2001-09-061-0/+22
* Make sure that WeakValueDictionary[] raises KeyError instead of TypeErrorFred Drake2001-08-031-0/+5
* Extend the weakref test suite to cover the complete mapping interface forFred Drake2001-05-101-4/+61