def info(object, spacing=10, collapse=1):
"""print methods and doc strings.
Take module, class, list, dictionary, or string."""
methodList = [method for method in dir(object) if callable(getattr(object, method))]
processFunc = collapse and (lambda s: " ".join(s.split())) or (lambda s: s)
print "\n".join(["%s %s" %
(method.1just(spacing),
processFunc(str(getattr(object, method).__doc__)))
for method in methodList])
if __name__ == "__main__":
print info.__doc__
When I import this source code into Python's IDLE/shell, I receive the error for the respective underlined and bold-ed text of this code:
Traceback (most recent call last):
File "<pyshell#0>", line 1, in <module>
import apihelper
File "C:\Python31\apihelper.py", line 7
print "\n".join(["%s %s" %
^
SyntaxError: invalid syntax
What's the correct syntax for this code?