index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Lib
/
test
/
test_weakref.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-29796: test_weakref: Fix collect_in_thread() on Windows (#2553)
Victor Stinner
2017-07-04
1
-1/+1
*
Issue #28427: old keys should not remove new values from
Antoine Pitrou
2016-12-27
1
-0/+12
*
Issue #19542: Fix bugs in WeakValueDictionary.setdefault() and WeakValueDicti...
Antoine Pitrou
2016-12-19
1
-0/+44
*
Issue #17765: weakref.ref() no longer silently ignores keyword arguments.
Serhiy Storchaka
2016-05-07
1
-0/+4
*
Issue #22958: Constructor and update method of weakref.WeakValueDictionary
Serhiy Storchaka
2015-09-29
1
-0/+25
*
fix some test_weakref tests to not rely on ref-counting (closes #22267)
Benjamin Peterson
2014-08-24
1
-0/+2
*
Issue #7105: weak dict iterators are fragile because of unpredictable GC runs
Kristján Valur Jónsson
2013-12-05
1
-5/+92
*
Issue #19607: Use specific asserts in weakref tests.
Serhiy Storchaka
2013-11-17
1
-77/+74
*
Issue #16602: When a weakref's target was part of a long deallocation chain, ...
Antoine Pitrou
2012-12-08
1
-0/+21
*
Issue #16453: Fix equality testing of dead weakref objects.
Antoine Pitrou
2012-11-11
1
-11/+69
*
Issue #14159: Fix the len() of weak sets to return a better approximation whe...
Antoine Pitrou
2012-03-01
1
-0/+60
*
Issue #8268: Old-style classes (not just instances) now support weak
Antoine Pitrou
2010-03-31
1
-0/+20
*
#7092 - Silence more py3k deprecation warnings, using test_support.check_py3k...
Florent Xicluna
2010-03-21
1
-28/+28
*
use assert[Not]In where appropriate
Ezio Melotti
2010-01-23
1
-9/+8
*
Reverting the Revision: 77368. I committed Flox's big patch for tests by
Senthil Kumaran
2010-01-08
1
-20/+17
*
Fixing - Issue7026 - RuntimeError: dictionary changed size during iteration. ...
Senthil Kumaran
2010-01-08
1
-17/+20
*
#5037 proxy __unicode__ correctly
Benjamin Peterson
2009-11-19
1
-0/+11
*
convert usage of fail* to assert*
Benjamin Peterson
2009-06-30
1
-105/+105
*
Fix #3634 invalid return value from _weakref.ref(Exception).__init__
Benjamin Peterson
2008-09-09
1
-0/+8
*
Issue 3110: Crash with weakref subclass,
Amaury Forgeot d'Arc
2008-06-16
1
-1/+40
*
#2592: delegate nb_index and the floor/truediv slots in weakref.proxy.
Georg Brandl
2008-05-20
1
-1/+22
*
Fix crasher for when an object's __del__ creates a new weakref to itself.
Brett Cannon
2007-01-23
1
-0/+14
*
Fix typo.
Walter Dörwald
2006-12-12
1
-1/+1
*
("Forward-port" of r46506)
Armin Rigo
2006-05-28
1
-2/+2
*
SF #1479988: add methods to allow access to weakrefs for the
Fred Drake
2006-05-02
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
*
Combine the functionality of test_support.run_unittest()
Walter Dörwald
2003-05-01
1
-6/+6
*
SF patch #667730: More DictMixin
Raymond Hettinger
2003-03-09
1
-0/+17
*
Standardize behavior: no docstrings in test functions. Also use
Guido van Rossum
2002-08-22
1
-6/+4
*
Get rid of relative imports in all unittests. Now anything that
Barry Warsaw
2002-07-23
1
-1/+1
[next]