Kaydet (Commit) bf43691c authored tarafından Fred Drake's avatar Fred Drake

Use the WeakKeyDictionary and WeakValueDictionary classes directly

instead of using the mapping() function.
üst f6cdead8
......@@ -210,7 +210,7 @@ class MappingTestCase(TestBase):
COUNT = 10
def test_weak_values(self):
dict = weakref.mapping()
dict = weakref.WeakValueDictionary()
objects = map(Object, range(self.COUNT))
for o in objects:
dict[o.arg] = o
......@@ -236,7 +236,7 @@ class MappingTestCase(TestBase):
"deleting the values did not clear the dictionary")
def test_weak_keys(self):
dict = weakref.mapping(weakkeys=1)
dict = weakref.WeakKeyDictionary()
objects = map(Object, range(self.COUNT))
for o in objects:
dict[o] = o.arg
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment