diff options
author | Lysandros Nikolaou <lisandrosnik@gmail.com> | 2018-07-11 00:11:34 (GMT) |
---|---|---|
committer | Mariatta <Mariatta@users.noreply.github.com> | 2018-07-11 00:11:34 (GMT) |
commit | 9cffdbffc3b2dec18def1c3e8cfa166d01d609df (patch) | |
tree | 186aa4d720f92169b0977cc93d5ee7b6199e398a /Doc | |
parent | 5fe7c98a54d127759cfce323fab831008c945964 (diff) | |
download | cpython-9cffdbffc3b2dec18def1c3e8cfa166d01d609df.zip cpython-9cffdbffc3b2dec18def1c3e8cfa166d01d609df.tar.gz cpython-9cffdbffc3b2dec18def1c3e8cfa166d01d609df.tar.bz2 |
Fix documentation for input and output tutorial (GH-8231)
The ValueError message ends with a period.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/tutorial/inputoutput.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tutorial/inputoutput.rst b/Doc/tutorial/inputoutput.rst index dfa2806..417c3b1 100644 --- a/Doc/tutorial/inputoutput.rst +++ b/Doc/tutorial/inputoutput.rst @@ -338,7 +338,7 @@ automatically fail. :: >>> f.read() Traceback (most recent call last): File "<stdin>", line 1, in <module> - ValueError: I/O operation on closed file + ValueError: I/O operation on closed file. .. _tut-filemethods: |