Renamed the repr module to reprlib.
Added stub module for repr.
diff --git a/Lib/lib-old/repr.py b/Lib/lib-old/repr.py
new file mode 100644
index 0000000..daa2154
--- /dev/null
+++ b/Lib/lib-old/repr.py
@@ -0,0 +1,7 @@
+from warnings import warnpy3k
+warnpy3k("The repr module has been renamed to 'reprlib' in Python 3.0",
+         stacklevel=2)
+
+from sys import modules
+import reprlib
+modules[__name__] = repr