summaryrefslogtreecommitdiffstats
path: root/Doc/library/reprlib.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-10-04 18:33:26 (GMT)
committerGeorg Brandl <georg@python.org>2008-10-04 18:33:26 (GMT)
commit0df797943cc46af236cce9c15e98c475f7ecccf0 (patch)
tree431d14d4336f0489878f7bf24a75426dac20535f /Doc/library/reprlib.rst
parentb186f3438419a6c881705a42db1ecc4e52f5241e (diff)
downloadcpython-0df797943cc46af236cce9c15e98c475f7ecccf0.zip
cpython-0df797943cc46af236cce9c15e98c475f7ecccf0.tar.gz
cpython-0df797943cc46af236cce9c15e98c475f7ecccf0.tar.bz2
#4000: fix several 2.x atavisms.
Diffstat (limited to 'Doc/library/reprlib.rst')
-rw-r--r--Doc/library/reprlib.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/reprlib.rst b/Doc/library/reprlib.rst
index e503442..aad6f66 100644
--- a/Doc/library/reprlib.rst
+++ b/Doc/library/reprlib.rst
@@ -126,7 +126,7 @@ for file objects could be added::
if obj.name in ['<stdin>', '<stdout>', '<stderr>']:
return obj.name
else:
- return `obj`
+ return repr(obj)
aRepr = MyRepr()
print aRepr.repr(sys.stdin) # prints '<stdin>'