bpo-28315: Improve code examples in docs (GH-1372)

Replace
   File "<stdin>", line 1, in ? 
with 
   File "<stdin>", line 1, in <module>
This commit is contained in:
UltimateCoder 2017-05-03 22:16:45 +05:30 committed by Mariatta
parent a5c62a8e9f
commit 8856940cf2
12 changed files with 30 additions and 30 deletions

View file

@ -362,7 +362,7 @@ attempts to use the file object will automatically fail. ::
>>> f.close()
>>> f.read()
Traceback (most recent call last):
File "<stdin>", line 1, in ?
File "<stdin>", line 1, in <module>
ValueError: I/O operation on closed file
It is good practice to use the :keyword:`with` keyword when dealing with file