This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author terry.reedy
Recipients markroseman, ned.deily, serhiy.storchaka, terry.reedy
Date 2016-06-13.22:06:57
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1465855618.31.0.334858404461.issue27173@psf.upfronthosting.co.za>
In-reply-to
Content
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.
History
Date User Action Args
2016-06-13 22:06:58terry.reedysetrecipients: + terry.reedy, ned.deily, markroseman, serhiy.storchaka
2016-06-13 22:06:58terry.reedysetmessageid: <1465855618.31.0.334858404461.issue27173@psf.upfronthosting.co.za>
2016-06-13 22:06:58terry.reedylinkissue27173 messages
2016-06-13 22:06:58terry.reedycreate