summaryrefslogtreecommitdiff
path: root/Lib/weakref.py
diff options
context:
space:
mode:
authorPhilip Jenvey <pjenvey@underboss.org>2012-10-01 12:53:43 -0700
committerPhilip Jenvey <pjenvey@underboss.org>2012-10-01 12:53:43 -0700
commit4993cc0a5b34dc91da2b41c50e33d809f0191355 (patch)
tree5f4a1327469a43d4bbaa876e13e22a316731775d /Lib/weakref.py
parent075bbb176f69e3da013e39d847caaea9b0cee334 (diff)
downloadcpython-git-4993cc0a5b34dc91da2b41c50e33d809f0191355.tar.gz
utilize yield from
Diffstat (limited to 'Lib/weakref.py')
-rw-r--r--Lib/weakref.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/weakref.py b/Lib/weakref.py
index fcb6b74d1b..339fcf4718 100644
--- a/Lib/weakref.py
+++ b/Lib/weakref.py
@@ -153,8 +153,7 @@ class WeakValueDictionary(collections.MutableMapping):
"""
with _IterationGuard(self):
- for wr in self.data.values():
- yield wr
+ yield from self.data.values()
def values(self):
with _IterationGuard(self):