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-07-15.06:51:42
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1468565502.34.0.598968600128.issue25507@psf.upfronthosting.co.za>
In-reply-to
Content
First step.  Patch moves 4 objects from pyshell to run and reverses run importing pyshell to pyshell importing run.  This initially failed because run imports stackbrowser and the stackbrowser import of something from pyshell failed.  Since the import is only needed for htest, I just moved it into the htest code.  Removing 'import pyshell' from run avoids 'import tkinter.messagebox' in pyshell.  It also reduces len(sys.modules) in the user process by 37 from 193 to 156.
History
Date User Action Args
2016-07-15 06:51:42terry.reedysetrecipients: + terry.reedy, markroseman, python-dev
2016-07-15 06:51:42terry.reedysetmessageid: <1468565502.34.0.598968600128.issue25507@psf.upfronthosting.co.za>
2016-07-15 06:51:42terry.reedylinkissue25507 messages
2016-07-15 06:51:42terry.reedycreate