diff options
| author | Philip Jenvey <pjenvey@underboss.org> | 2012-10-01 15:34:31 -0700 |
|---|---|---|
| committer | Philip Jenvey <pjenvey@underboss.org> | 2012-10-01 15:34:31 -0700 |
| commit | fd0d3e5d25cf9dcb751a329cf390388e0dbd8da2 (patch) | |
| tree | 2a0f83ce2ce3a894d27a6330ecb731bb0fc6fc76 /Lib/http/cookiejar.py | |
| parent | 8bfcf51b5d0ca5a0bbd7045c318f5aa31e5f7de8 (diff) | |
| download | cpython-git-fd0d3e5d25cf9dcb751a329cf390388e0dbd8da2.tar.gz | |
more yield from
patch by Serhiy Storchaka
Diffstat (limited to 'Lib/http/cookiejar.py')
| -rw-r--r-- | Lib/http/cookiejar.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/http/cookiejar.py b/Lib/http/cookiejar.py index 901e762f0e..a77dc3fc5d 100644 --- a/Lib/http/cookiejar.py +++ b/Lib/http/cookiejar.py @@ -1193,8 +1193,7 @@ def deepvalues(mapping): pass else: mapping = True - for subobj in deepvalues(obj): - yield subobj + yield from deepvalues(obj) if not mapping: yield obj |
