()
| 403 | |
| 404 | @staticmethod |
| 405 | def default_keys(): |
| 406 | if sys.platform[:3] == 'win': |
| 407 | return 'IDLE Classic Windows' |
| 408 | elif sys.platform == 'darwin': |
| 409 | return 'IDLE Classic OSX' |
| 410 | else: |
| 411 | return 'IDLE Modern Unix' |
| 412 | |
| 413 | def GetExtensions(self, active_only=True, |
| 414 | editor_only=False, shell_only=False): |
no outgoing calls