diff options
author | Georg Brandl <georg@python.org> | 2010-01-05 10:22:04 +0000 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-01-05 10:22:04 +0000 |
commit | 9a22f563106b567ad759e6bc29306df2ff55808a (patch) | |
tree | 258ec98a1ffb1dbcc826f9ac982ce92674d9c2e7 /Doc/library/reprlib.rst | |
parent | d97a1c2ab96bf3bc7ce9430e0125ec4af9baec57 (diff) | |
download | cpython-9a22f563106b567ad759e6bc29306df2ff55808a.tar.gz |
Assorted doc fixes by Florent.
Diffstat (limited to 'Doc/library/reprlib.rst')
-rw-r--r-- | Doc/library/reprlib.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/reprlib.rst b/Doc/library/reprlib.rst index b529aca665..056c5dc442 100644 --- a/Doc/library/reprlib.rst +++ b/Doc/library/reprlib.rst @@ -129,5 +129,5 @@ for file objects could be added:: return repr(obj) aRepr = MyRepr() - print aRepr.repr(sys.stdin) # prints '<stdin>' + print(aRepr.repr(sys.stdin)) # prints '<stdin>' |