Revert the renaming of repr to reprlib.
diff --git a/Doc/library/datatypes.rst b/Doc/library/datatypes.rst
index b6b37ab..4ebaa6c 100644
--- a/Doc/library/datatypes.rst
+++ b/Doc/library/datatypes.rst
@@ -36,4 +36,4 @@
new.rst
copy.rst
pprint.rst
- reprlib.rst
+ repr.rst
diff --git a/Doc/library/reprlib.rst b/Doc/library/repr.rst
similarity index 91%
rename from Doc/library/reprlib.rst
rename to Doc/library/repr.rst
index c4859be..bd9743d 100644
--- a/Doc/library/reprlib.rst
+++ b/Doc/library/repr.rst
@@ -1,20 +1,16 @@
-:mod:`reprlib` --- Alternate :func:`repr` implementation
-========================================================
+
+:mod:`repr` --- Alternate :func:`repr` implementation
+=====================================================
.. module:: repr
- :synopsis: Old name for the reprlib module.
-
-.. module:: reprlib
:synopsis: Alternate repr() implementation with size limits.
.. sectionauthor:: Fred L. Drake, Jr. <fdrake@acm.org>
.. note::
The :mod:`repr` module has been renamed to :mod:`reprlib` in
- Python 3.0. It is importable under both names in Python 2.6
- and the rest of the 2.x series.
+ Python 3.0.
-
-The :mod:`reprlib` module provides a means for producing object representations
+The :mod:`repr` module provides a means for producing object representations
with limits on the size of the resulting strings. This is used in the Python
debugger and may be useful in other contexts as well.
diff --git a/Doc/tutorial/stdlib2.rst b/Doc/tutorial/stdlib2.rst
index 79044f9..9da5213 100644
--- a/Doc/tutorial/stdlib2.rst
+++ b/Doc/tutorial/stdlib2.rst
@@ -13,11 +13,11 @@
Output Formatting
=================
-The :mod:`reprlib` module provides a version of :func:`repr` customized for
+The :mod:`repr` module provides a version of :func:`repr` customized for
abbreviated displays of large or deeply nested containers::
- >>> import reprlib
- >>> reprlib.repr(set('supercalifragilisticexpialidocious'))
+ >>> import repr
+ >>> repr.repr(set('supercalifragilisticexpialidocious'))
"set(['a', 'c', 'd', 'e', 'f', 'g', ...])"
The :mod:`pprint` module offers more sophisticated control over printing both