diff options
author | Georg Brandl <georg@python.org> | 2010-01-05 10:22:04 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-01-05 10:22:04 (GMT) |
commit | ede6c2aff6f2bf8842147ca286493e06ac0a99b0 (patch) | |
tree | 6dbb996deb2042c8f3aeb9310923c38a0c6f1257 /Doc/library/reprlib.rst | |
parent | 7de0a6e04cb935e1665b82804f08457c924c6a5d (diff) | |
download | cpython-ede6c2aff6f2bf8842147ca286493e06ac0a99b0.zip cpython-ede6c2aff6f2bf8842147ca286493e06ac0a99b0.tar.gz cpython-ede6c2aff6f2bf8842147ca286493e06ac0a99b0.tar.bz2 |
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 b529aca..056c5dc 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>' |