Re: Running IDLE on 3.0rc1

2008-09-27 Thread Terry Reedy
Allan wrote: Terry Reedy [EMAIL PROTECTED] writes: I have not seen this posted, so... To run IDLE with Python3.0rc1, edit Python30/Libs/idlelib/run.py, and change set_daemon(True) to daemon = True and save. (This is about line 75, and the only appearance of 'daemon'.) Otherwise, you get error

Running IDLE on 3.0rc1

2008-09-26 Thread Terry Reedy
I have not seen this posted, so... To run IDLE with Python3.0rc1, edit Python30/Libs/idlelib/run.py, and change set_daemon(True) to daemon = True and save. (This is about line 75, and the only appearance of 'daemon'.) Otherwise, you get error message about not starting a subprocess. tjr --