mirror of
https://github.com/python/cpython.git
synced 2025-09-27 10:50:04 +00:00
Fix resource warning when looking at turtledemo’s help (#12295)
This commit is contained in:
parent
2ffea0e8d7
commit
ccf03a1cdc
1 changed files with 3 additions and 2 deletions
|
@ -62,14 +62,15 @@ def view_text(parent, title, text):
|
||||||
|
|
||||||
def view_file(parent, title, filename, encoding=None):
|
def view_file(parent, title, filename, encoding=None):
|
||||||
try:
|
try:
|
||||||
textFile = open(filename, 'r', encoding=encoding)
|
with open(filename, 'r', encoding=encoding) as file:
|
||||||
|
contents = file.read()
|
||||||
except IOError:
|
except IOError:
|
||||||
import tkinter.messagebox as tkMessageBox
|
import tkinter.messagebox as tkMessageBox
|
||||||
tkMessageBox.showerror(title='File Load Error',
|
tkMessageBox.showerror(title='File Load Error',
|
||||||
message='Unable to load file %r .' % filename,
|
message='Unable to load file %r .' % filename,
|
||||||
parent=parent)
|
parent=parent)
|
||||||
else:
|
else:
|
||||||
return view_text(parent, title, textFile.read())
|
return view_text(parent, title, contents)
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue