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 mark
Recipients mark
Date 2008-08-21.08:53:54
SpamBayes Score 0.008501606
Marked as misclassified No
Message-id <1219308836.24.0.122071420081.issue3628@psf.upfronthosting.co.za>
In-reply-to
Content
Just realised how to fix this. Change line 76 in idlelib/run.py:

# change this:
    sockthread.set_daemon(True)
# to this:
    sockthread.daemon = True

and IDLE runs fine.
History
Date User Action Args
2008-08-21 08:53:56marksetrecipients: + mark
2008-08-21 08:53:56marksetmessageid: <1219308836.24.0.122071420081.issue3628@psf.upfronthosting.co.za>
2008-08-21 08:53:55marklinkissue3628 messages
2008-08-21 08:53:54markcreate