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 roger.serwy
Recipients christian.heimes, kbk, roger.serwy, terry.reedy
Date 2012-01-15.05:51:11
SpamBayes Score 1.6530128e-08
Marked as misclassified No
Message-id <1326606672.71.0.877560879814.issue13495@psf.upfronthosting.co.za>
In-reply-to
Content
There was another regression introduced by (a4bd8a4805a8). IDLE 3 no longer allows for editing of new files from the command line. 

For example:

   idle -e /tmp/newfile.py 

will momentarily flash an editor window before it is closed. This is due to "good_load" not being set. What's worse is that the IDLE process will continue running without having any visible windows open. 

The rev2 patch removes the "good_load" flag and fixes the ColorDelegator issue.

I understand the purpose of the original code is to avoid displaying a blank editor in case of a decode error. The rev2 patch reintroduces this behavior. In my opinion, that behavior is not a serious problem.
History
Date User Action Args
2012-01-15 05:51:13roger.serwysetrecipients: + roger.serwy, terry.reedy, kbk, christian.heimes
2012-01-15 05:51:12roger.serwysetmessageid: <1326606672.71.0.877560879814.issue13495@psf.upfronthosting.co.za>
2012-01-15 05:51:12roger.serwylinkissue13495 messages
2012-01-15 05:51:11roger.serwycreate