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 ncoghlan
Recipients Decorater, brett.cannon, eric.snow, gvanrossum, ncoghlan, r.david.murray, terry.reedy
Date 2016-07-16.06:45:52
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1468651552.79.0.413628206367.issue27515@psf.upfronthosting.co.za>
In-reply-to
Content
Terry: it's not a 100% guarantee, but it should be sufficient for your purposes (the more obscure failure modes mostly relate to C level globals, Python level module globals, pickling, and module import having side effects on state in other modules, and it's unlikely you'll hit any of those here as long as the main "tk" module and any modules it implicitly imports stay loaded. If you do end up getting bug reports about this, we can treat those as a bug in the affected modules)

As far as the module count goes, a plain "import tkinter" gets the imported module count up to 63, so that's presumably an absolute lower bound on your efforts.
History
Date User Action Args
2016-07-16 06:45:52ncoghlansetrecipients: + ncoghlan, gvanrossum, brett.cannon, terry.reedy, r.david.murray, eric.snow, Decorater
2016-07-16 06:45:52ncoghlansetmessageid: <1468651552.79.0.413628206367.issue27515@psf.upfronthosting.co.za>
2016-07-16 06:45:52ncoghlanlinkissue27515 messages
2016-07-16 06:45:52ncoghlancreate