--- Python/NinoCode/Tool_Box/apihelper.py 2012/05/05 04:21:19 8 +++ Python/NinoCode/Tool_Box/apihelper.py 2021/04/13 21:40:41 744 @@ -9,9 +9,9 @@ def help(object, spacing=10, collapse=1) Takes 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" % + print("\n".join(["%s %s" % (method.ljust(spacing), processFunc(str(getattr(object, method).__doc__))) - for method in methodList]) + for method in methodList])) if __name__ == "__main__": - print help.__doc__ \ No newline at end of file + print(help.__doc__) \ No newline at end of file