[Python-checkins] IDLE: replace if statement with expression (#94228)

terryjreedy webhook-mailer at python.org
Fri Jun 24 13:00:01 EDT 2022


https://github.com/python/cpython/commit/91f9947f231cce2c72a3fb7b5c8e8cf49cc2c10f
commit: 91f9947f231cce2c72a3fb7b5c8e8cf49cc2c10f
branch: main
author: Terry Jan Reedy <tjreedy at udel.edu>
committer: terryjreedy <tjreedy at udel.edu>
date: 2022-06-24T12:59:49-04:00
summary:

IDLE: replace if statement with expression (#94228)

files:
M Lib/idlelib/iomenu.py

diff --git a/Lib/idlelib/iomenu.py b/Lib/idlelib/iomenu.py
index 86ce68c06a447..327e885203c3c 100644
--- a/Lib/idlelib/iomenu.py
+++ b/Lib/idlelib/iomenu.py
@@ -13,14 +13,10 @@
 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.



More information about the Python-checkins mailing list