summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-01-27 18:14:43 (GMT)
committerGeorg Brandl <georg@python.org>2008-01-27 18:14:43 (GMT)
commitce8fd9d2bc337f637cd55eb6701b99e24ad1549b (patch)
treee2d85ed3be265be46972c580e59d76f4d82a9bba
parentc5198090f3c1a3d40710a03707c62884234f0e6a (diff)
downloadcpython-ce8fd9d2bc337f637cd55eb6701b99e24ad1549b.zip
cpython-ce8fd9d2bc337f637cd55eb6701b99e24ad1549b.tar.gz
cpython-ce8fd9d2bc337f637cd55eb6701b99e24ad1549b.tar.bz2
Remove effectless expression statement.
-rwxr-xr-xLib/pydoc.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/pydoc.py b/Lib/pydoc.py
index 26cd55d..7585b18 100755
--- a/Lib/pydoc.py
+++ b/Lib/pydoc.py
@@ -1197,7 +1197,6 @@ class TextDoc(Doc):
else:
tag = "inherited from %s" % classname(thisclass,
object.__module__)
- filter(lambda t: not t[0].startswith('_'), attrs)
# Sort attrs by name.
attrs.sort()