diff options
author | Georg Brandl <georg@python.org> | 2008-01-27 18:14:43 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-01-27 18:14:43 (GMT) |
commit | ce8fd9d2bc337f637cd55eb6701b99e24ad1549b (patch) | |
tree | e2d85ed3be265be46972c580e59d76f4d82a9bba | |
parent | c5198090f3c1a3d40710a03707c62884234f0e6a (diff) | |
download | cpython-ce8fd9d2bc337f637cd55eb6701b99e24ad1549b.zip cpython-ce8fd9d2bc337f637cd55eb6701b99e24ad1549b.tar.gz cpython-ce8fd9d2bc337f637cd55eb6701b99e24ad1549b.tar.bz2 |
Remove effectless expression statement.
-rwxr-xr-x | Lib/pydoc.py | 1 |
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() |