commit | e0d4972acc8cfd4b8fb16c074a8031e50fab0f29 | [log] [tgz] |
---|---|---|
author | Raymond Hettinger <python@rcn.com> | Sun Jun 02 18:55:56 2002 +0000 |
committer | Raymond Hettinger <python@rcn.com> | Sun Jun 02 18:55:56 2002 +0000 |
tree | b9a9286453c2ee4397618d4483679c3bc531f4b0 | |
parent | 1fab9ee085755ed2f7abcf28794d7c20bd51a97a [diff] [blame] |
Replaced .keys() with dictionary iterators
diff --git a/Lib/pyclbr.py b/Lib/pyclbr.py index 29b8354..fad46ad 100644 --- a/Lib/pyclbr.py +++ b/Lib/pyclbr.py
@@ -324,7 +324,7 @@ # Python does internally) # also don't add names that # start with _ - for n in d.keys(): + for n in d: if n[0] != '_' and \ not n in dict: dict[n] = d[n]