[issue27173] Modern Unix key bindings for IDLE

Terry J. Reedy report at bugs.python.org
Mon Jun 13 18:06:58 EDT 2016


Terry J. Reedy added the comment:

Ned, Serhiy's patch 4 solves one of your concerns in #20580 with

+    @staticmethod
+    def DefaultKeys():
+        if sys.platform[:3] == 'win':
+            return 'IDLE Classic Windows'
+        elif sys.platform == 'darwin':
+            return 'IDLE Classic OSX'
+        else:
+            return 'IDLE Modern Unix'

Please confirm that Classic OSX is the right choice over Classic Mac.

----------
nosy: +ned.deily

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue27173>
_______________________________________


More information about the Python-bugs-list mailing list