2007-11-20から1日間の記事一覧

標準っぽいライブラリを列挙する

import sys, string, pydoc, textwrap w = textwrap.TextWrapper() w.width = 60 w.subsequent_indent = " " * 18 for key in sorted(filter(lambda key: key[0] in string.lowercase + "_", sys.modules.iterkeys())): doc = pydoc.splitdoc(sys.modules[ke…