Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #1514 from rkern/fix-pretty-ref
DOC: Fix references to IPython.lib.pretty instead of the old location
  • Loading branch information
minrk committed Mar 22, 2012
2 parents 3a1ddcc + 1d6dbb4 commit 80c9e8e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions IPython/core/formatters.py
Expand Up @@ -319,9 +319,9 @@ class is not in the registry. Successful matches will be moved to the
class PlainTextFormatter(BaseFormatter):
"""The default pretty-printer.
This uses :mod:`IPython.external.pretty` to compute the format data of
This uses :mod:`IPython.lib.pretty` to compute the format data of
the object. If the object cannot be pretty printed, :func:`repr` is used.
See the documentation of :mod:`IPython.external.pretty` for details on
See the documentation of :mod:`IPython.lib.pretty` for details on
how to write pretty printers. Here is a simple example::
def dtype_pprinter(obj, p, cycle):
Expand Down Expand Up @@ -412,7 +412,7 @@ def _float_precision_changed(self, name, old, new):
numpy.set_printoptions(precision=8)
self.float_format = fmt

# Use the default pretty printers from IPython.external.pretty.
# Use the default pretty printers from IPython.lib.pretty.
def _singleton_printers_default(self):
return pretty._singleton_pprinters.copy()

Expand Down

0 comments on commit 80c9e8e

Please sign in to comment.