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, python-dev, terry.reedy
Date 2016-09-30.07:06:05
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1475219166.28.0.166440772309.issue25488@psf.upfronthosting.co.za>
In-reply-to
Content
I usually start repository IDLE with 'import idlelib.idle' in repository console python, which I have pinned to my taskbar.  This is at least as faster as entering a command in the console (which would block the console), keeps error messages for one version together in one place and separate from anything else, and leaves my console free to enter other commands.

The import change will make idlelib.idle.main() work to restart IDLE after closing it.  Previously, idlelib.idle.idlelib.pyshell.main() was required, which I never did.  I marked the import as subject to change, as I intend to move (and edit) much of pyshell.main to idle.py.
History
Date User Action Args
2016-09-30 07:06:06terry.reedysetrecipients: + terry.reedy, markroseman, python-dev
2016-09-30 07:06:06terry.reedysetmessageid: <1475219166.28.0.166440772309.issue25488@psf.upfronthosting.co.za>
2016-09-30 07:06:06terry.reedylinkissue25488 messages
2016-09-30 07:06:05terry.reedycreate