summaryrefslogtreecommitdiffstats
path: root/Doc/tutorial
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2018-07-11 01:08:43 (GMT)
committerGitHub <noreply@github.com>2018-07-11 01:08:43 (GMT)
commitdef4b063f3384645e104f09c59aa03a7a90f4e69 (patch)
tree8bd826db7b53bfd2cef8ec1ea889d420bdb0d80c /Doc/tutorial
parentcb14eb7eedf36cd21aaf41c4d3eb1e6521fa7b11 (diff)
downloadcpython-def4b063f3384645e104f09c59aa03a7a90f4e69.zip
cpython-def4b063f3384645e104f09c59aa03a7a90f4e69.tar.gz
cpython-def4b063f3384645e104f09c59aa03a7a90f4e69.tar.bz2
Fix documentation for input and output tutorial (GH-8231)
The ValueError message ends with a period. (cherry picked from commit 9cffdbffc3b2dec18def1c3e8cfa166d01d609df) Co-authored-by: Lysandros Nikolaou <lisandrosnik@gmail.com>
Diffstat (limited to 'Doc/tutorial')
-rw-r--r--Doc/tutorial/inputoutput.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tutorial/inputoutput.rst b/Doc/tutorial/inputoutput.rst
index d553102..9fd939a 100644
--- a/Doc/tutorial/inputoutput.rst
+++ b/Doc/tutorial/inputoutput.rst
@@ -289,7 +289,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: