Changed references to the reprlib module to use its new name.

This commit is contained in:
Alexandre Vassalotti 2008-05-16 06:58:49 +00:00
parent 95d97c7390
commit 50a1acb2ab
12 changed files with 28 additions and 29 deletions

View file

@ -13,11 +13,11 @@ programming needs. These modules rarely occur in small scripts.
Output Formatting
=================
The :mod:`repr` module provides a version of :func:`repr` customized for
The :mod:`reprlib` module provides a version of :func:`repr` customized for
abbreviated displays of large or deeply nested containers::
>>> import repr
>>> repr.repr(set('supercalifragilisticexpialidocious'))
>>> import reprlib
>>> reprlib.repr(set('supercalifragilisticexpialidocious'))
"set(['a', 'c', 'd', 'e', 'f', 'g', ...])"
The :mod:`pprint` module offers more sophisticated control over printing both