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 pbwinston
Recipients akineko, jahakala, pbwinston
Date 2011-01-18.22:12:53
SpamBayes Score 0.0006092282
Marked as misclassified No
Message-id <1295388779.59.0.0315176800148.issue5527@psf.upfronthosting.co.za>
In-reply-to
Content
We ran into this. Forking before importing Tkinter worked for us.  We did the following which seems pretty clean:

main.py
import stdlib only
if __name__ == 'main':
   <fork via multiprocessing.Process>
   from application import App
   App()

application.py
import Tkinter 
class App...
History
Date User Action Args
2011-01-18 22:12:59pbwinstonsetrecipients: + pbwinston, akineko, jahakala
2011-01-18 22:12:59pbwinstonsetmessageid: <1295388779.59.0.0315176800148.issue5527@psf.upfronthosting.co.za>
2011-01-18 22:12:53pbwinstonlinkissue5527 messages
2011-01-18 22:12:53pbwinstoncreate