summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2022-06-24 16:59:49 (GMT)
committerGitHub <noreply@github.com>2022-06-24 16:59:49 (GMT)
commit91f9947f231cce2c72a3fb7b5c8e8cf49cc2c10f (patch)
tree26a7c3ebfbae0ea5cf45ec4180026e614ada29b6
parentf0b234e6ed83e810bd9844e744f5e22aa538a356 (diff)
downloadcpython-91f9947f231cce2c72a3fb7b5c8e8cf49cc2c10f.zip
cpython-91f9947f231cce2c72a3fb7b5c8e8cf49cc2c10f.tar.gz
cpython-91f9947f231cce2c72a3fb7b5c8e8cf49cc2c10f.tar.bz2
IDLE: replace if statement with expression (#94228)
-rw-r--r--Lib/idlelib/iomenu.py8
1 files changed, 2 insertions, 6 deletions
diff --git a/Lib/idlelib/iomenu.py b/Lib/idlelib/iomenu.py
index 86ce68c..327e885 100644
--- a/Lib/idlelib/iomenu.py
+++ b/Lib/idlelib/iomenu.py
@@ -13,14 +13,10 @@ from idlelib.config import idleConf
from idlelib.util import py_extensions
py_extensions = ' '.join("*"+ext for ext in py_extensions)
-
encoding = 'utf-8'
-if sys.platform == 'win32':
- errors = 'surrogatepass'
-else:
- errors = 'surrogateescape'
+errors = 'surrogatepass' if sys.platform == 'win32' else 'surrogateescape'
+
-
class IOBinding:
# One instance per editor Window so methods know which to save, close.
# Open returns focus to self.editwin if aborted.