summaryrefslogtreecommitdiff
path: root/Lib/pyclbr.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2007-02-11 06:12:03 +0000
committerGuido van Rossum <guido@python.org>2007-02-11 06:12:03 +0000
commit6308f632af1c51802e8917bc6494ea3f56ddabc4 (patch)
treebbbf764c7ee1fc61032410493a29a6df15dbeecc /Lib/pyclbr.py
parentc23f270cb89d26833c084e332c563413205283a6 (diff)
downloadcpython-6308f632af1c51802e8917bc6494ea3f56ddabc4.tar.gz
- PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone;
and .keys(), .items(), .values() return dict views. The dict views aren't fully functional yet; in particular, they can't be compared to sets yet. but they are useful as "iterator wells". There are still 27 failing unit tests; I expect that many of these have fairly trivial fixes, but there are so many, I could use help.
Diffstat (limited to 'Lib/pyclbr.py')
-rw-r--r--Lib/pyclbr.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/pyclbr.py b/Lib/pyclbr.py
index a4ec3692f1..fdbfbd46cc 100644
--- a/Lib/pyclbr.py
+++ b/Lib/pyclbr.py
@@ -329,7 +329,7 @@ def _main():
for obj in objs:
if isinstance(obj, Class):
print("class", obj.name, obj.super, obj.lineno)
- methods = sorted(obj.methods.iteritems(), key=itemgetter(1))
+ methods = sorted(obj.methods.items(), key=itemgetter(1))
for name, lineno in methods:
if name != "__path__":
print(" def", name, lineno)