[Python-checkins] r60365 - python/trunk/Lib/pydoc.py
georg.brandl
python-checkins at python.org
Sun Jan 27 19:14:43 CET 2008
Author: georg.brandl
Date: Sun Jan 27 19:14:43 2008
New Revision: 60365
Modified:
python/trunk/Lib/pydoc.py
Log:
Remove effectless expression statement.
Modified: python/trunk/Lib/pydoc.py
==============================================================================
--- python/trunk/Lib/pydoc.py (original)
+++ python/trunk/Lib/pydoc.py Sun Jan 27 19:14:43 2008
@@ -1197,7 +1197,6 @@
else:
tag = "inherited from %s" % classname(thisclass,
object.__module__)
- filter(lambda t: not t[0].startswith('_'), attrs)
# Sort attrs by name.
attrs.sort()
More information about the Python-checkins
mailing list