From 393a1a07233e6f4ea1648e07667776d8286b4ba9 2010-10-31 04:37:51 From: Robert Kern Date: 2010-10-31 04:37:51 Subject: [PATCH] BUG: Format according to the coding standard. --- diff --git a/IPython/core/formatters.py b/IPython/core/formatters.py index 2bf9708..3c7b78c 100644 --- a/IPython/core/formatters.py +++ b/IPython/core/formatters.py @@ -31,20 +31,22 @@ a function. See the `IPython.external.pretty` documentation for how to write pretty-printer functions. - -Authors: - -* Robert Kern """ +# Stdlib imports import abc from cStringIO import StringIO +# Our own imports from IPython.config.configurable import Configurable from IPython.external import pretty from IPython.utils.traitlets import Bool, Dict, Int, Str +#----------------------------------------------------------------------------- +# Classes and functions +#----------------------------------------------------------------------------- + class DefaultFormatter(Configurable): """ The default pretty-printer. """