summaryrefslogtreecommitdiff
path: root/Lib/test/test_weakref.py
Commit message (Expand)AuthorAgeFilesLines
* [2.7] bpo-31692: Add PYTHONSHOWALLOCCOUNT env var (GH-3927)Victor Stinner2017-10-171-0/+1
* bpo-29796: test_weakref: Fix collect_in_thread() on Windows (#2553)Victor Stinner2017-07-041-1/+1
* Issue #28427: old keys should not remove new values fromAntoine Pitrou2016-12-271-0/+12
* Issue #19542: Fix bugs in WeakValueDictionary.setdefault() and WeakValueDicti...Antoine Pitrou2016-12-191-0/+44
* Issue #17765: weakref.ref() no longer silently ignores keyword arguments.Serhiy Storchaka2016-05-071-0/+4
* Issue #22958: Constructor and update method of weakref.WeakValueDictionarySerhiy Storchaka2015-09-291-0/+25
* fix some test_weakref tests to not rely on ref-counting (closes #22267)Benjamin Peterson2014-08-241-0/+2
* Issue #7105: weak dict iterators are fragile because of unpredictable GC runsKristján Valur Jónsson2013-12-051-5/+92
* Issue #19607: Use specific asserts in weakref tests.Serhiy Storchaka2013-11-171-77/+74
* Issue #16602: When a weakref's target was part of a long deallocation chain, ...Antoine Pitrou2012-12-081-0/+21
* Issue #16453: Fix equality testing of dead weakref objects.Antoine Pitrou2012-11-111-11/+69
* Issue #14159: Fix the len() of weak sets to return a better approximation whe...Antoine Pitrou2012-03-011-0/+60
* 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