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 terry.reedy
Recipients peter.otten, terry.reedy
Date 2013-11-30.04:12:50
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1385784770.74.0.176661332291.issue19808@psf.upfronthosting.co.za>
In-reply-to
Content
I checked and Idle does not color code the prompt. In 2.7, it only color-codes the response to input(prompt), which is eval-ed as Python code, but not the response to raw_input(prompt). (In 2.7, the code and input displayed raises SyntaxError.) So the bug in 3.3 and 3.4 is that 3.3 input is being treated like 2.7 input rather than like 2.7 raw_input.

I suspect that we just need to find and delete the code that detects 'input()' and triggers highlighting.
History
Date User Action Args
2013-11-30 04:12:50terry.reedysetrecipients: + terry.reedy, peter.otten
2013-11-30 04:12:50terry.reedysetmessageid: <1385784770.74.0.176661332291.issue19808@psf.upfronthosting.co.za>
2013-11-30 04:12:50terry.reedylinkissue19808 messages
2013-11-30 04:12:50terry.reedycreate