mirror of https://github.com/python/cpython
Merge with 3.3
This commit is contained in:
commit
6599d0da7d
|
@ -80,7 +80,8 @@ if __name__ == '__main__':
|
|||
root=Tk()
|
||||
root.title('textView test')
|
||||
filename = './textView.py'
|
||||
text = open(filename, 'r').read()
|
||||
with open(filename, 'r') as f:
|
||||
text = f.read()
|
||||
btn1 = Button(root, text='view_text',
|
||||
command=lambda:view_text(root, 'view_text', text))
|
||||
btn1.pack(side=LEFT)
|
||||
|
|
Loading…
Reference in New Issue