(code)
| 47 | from pygments.formatters import HtmlFormatter |
| 48 | |
| 49 | def pylight(code): |
| 50 | return highlight(code, PythonLexer(), HtmlFormatter(noclasses=True)) |
| 51 | |
| 52 | # builtin docstrings to ignore |
| 53 | _func_call_docstring = types.FunctionType.__call__.__doc__ |