[issue3628] IDLE does not run with Py30b3

Mark Summerfield report at bugs.python.org
Thu Aug 21 10:53:56 CEST 2008


Mark Summerfield <mark at qtrac.eu> added the comment:

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.

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue3628>
_______________________________________


More information about the Python-bugs-list mailing list