diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2013-01-11 06:53:10 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2013-01-11 06:53:10 (GMT) |
commit | 57dfb227a3b0b00da584734510f9c831a94d08b5 (patch) | |
tree | 7d34191acae1dec021ef0028c53ee56c4cac9b01 /Doc/library/string.rst | |
parent | 5c4e32b131af335d82e467ba95d6b30a414020e8 (diff) | |
download | cpython-57dfb227a3b0b00da584734510f9c831a94d08b5.zip cpython-57dfb227a3b0b00da584734510f9c831a94d08b5.tar.gz cpython-57dfb227a3b0b00da584734510f9c831a94d08b5.tar.bz2 |
#16154: fix some doctests in Doc/library. Patch by Ravi Sinha.
Diffstat (limited to 'Doc/library/string.rst')
-rw-r--r-- | Doc/library/string.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/string.rst b/Doc/library/string.rst index 9c7509b..a55c6b0 100644 --- a/Doc/library/string.rst +++ b/Doc/library/string.rst @@ -717,7 +717,7 @@ Here is an example of how to use a Template: >>> Template('Give $who $100').substitute(d) Traceback (most recent call last): [...] - ValueError: Invalid placeholder in string: line 1, col 10 + ValueError: Invalid placeholder in string: line 1, col 11 >>> Template('$who likes $what').substitute(d) Traceback (most recent call last): [...] |