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 ned.deily, terry.reedy
Date 2021-05-29.04:24:29
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1622262269.85.0.966598155855.issue44254@roundup.psfhosted.org>
In-reply-to
Content
Ned, could you check the darwin osascript in turtledemo.__main__, lines 138-149 is current (both needed and correct)?

            subprocess.run(
                    [
                        'osascript',
                        '-e', 'tell application "System Events"',
                        '-e', 'set frontmost of the first process whose '
                              'unix id is {} to true'.format(os.getpid()),
                        '-e', 'end tell',
                    ],
                    stderr=subprocess.DEVNULL,
                    stdout=subprocess.DEVNULL,)

The one line could be an fstring now.
History
Date User Action Args
2021-05-29 04:24:29terry.reedysetrecipients: + terry.reedy, ned.deily
2021-05-29 04:24:29terry.reedysetmessageid: <1622262269.85.0.966598155855.issue44254@roundup.psfhosted.org>
2021-05-29 04:24:29terry.reedylinkissue44254 messages
2021-05-29 04:24:29terry.reedycreate