https://github.com/python/cpython/commit/9cffdbffc3b2dec18def1c3e8cfa166d01d609df commit: 9cffdbffc3b2dec18def1c3e8cfa166d01d609df branch: master author: Lysandros Nikolaou <lisandrosnik at gmail.com> committer: Mariatta <Mariatta at users.noreply.github.com> date: 2018年07月10日T17:11:34-07:00 summary: Fix documentation for input and output tutorial (GH-8231) The ValueError message ends with a period. files: M Doc/tutorial/inputoutput.rst diff --git a/Doc/tutorial/inputoutput.rst b/Doc/tutorial/inputoutput.rst index dfa2806e1752..417c3b1319c0 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: