summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/textview.py
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2023-04-24 01:09:46 (GMT)
committerGitHub <noreply@github.com>2023-04-24 01:09:46 (GMT)
commit5054459678db1f9737e31b96a859112dbac98c52 (patch)
tree68abcce9e4295ab2c6c42342345406d0bd3c6006 /Lib/idlelib/textview.py
parent7b2ac6cf3dd33d591d0e14a020c84aa331d29932 (diff)
downloadcpython-5054459678db1f9737e31b96a859112dbac98c52.zip
cpython-5054459678db1f9737e31b96a859112dbac98c52.tar.gz
cpython-5054459678db1f9737e31b96a859112dbac98c52.tar.bz2
[3.11] gh-103668: Run pyugrade on idlelib (GH-103671) (#103730)
--------- (cherry picked from commit bd2dca035af88694e25fb060f984fbbcda82bed8) Co-authored-by: Nikita Sobolev <mail@sobolevn.me> Co-authored-by: Terry Jan Reedy tjreedy@udel.edu
Diffstat (limited to 'Lib/idlelib/textview.py')
-rw-r--r--Lib/idlelib/textview.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/textview.py b/Lib/idlelib/textview.py
index a66c1a4..23f0f4c 100644
--- a/Lib/idlelib/textview.py
+++ b/Lib/idlelib/textview.py
@@ -169,7 +169,7 @@ def view_file(parent, title, filename, encoding, modal=True, wrap='word',
with contents of the file.
"""
try:
- with open(filename, 'r', encoding=encoding) as file:
+ with open(filename, encoding=encoding) as file:
contents = file.read()
except OSError:
showerror(title='File Load Error',