[issue8641] IDLE 3 doesn't highlights b, but u

2011-12-07 Thread Roundup Robot
Roundup Robot devn...@psf.upfronthosting.co.za added the comment: New changeset 3822c8087d70 by Ned Deily in branch '3.2': Issue #8641: Update IDLE 3 syntax coloring to recognize b.. and not u... http://hg.python.org/cpython/rev/3822c8087d70 New changeset e49220f4c31f by Ned Deily in branch

[issue8641] IDLE 3 doesn't highlights b, but u

2011-12-07 Thread Ned Deily
Ned Deily n...@acm.org added the comment: Thanks for the patch, Tal, and thanks for testing it, Roger. Applied to 3.2 for release in 3.2.3 and to default for 3.3.0. -- assignee: - ned.deily nosy: +ned.deily resolution: works for me - fixed stage: - committed/rejected status: open -

[issue8641] IDLE 3 doesn't highlights b, but u

2011-12-06 Thread Roger Serwy
Roger Serwy roger.se...@gmail.com added the comment: I applied the patch against the latest version in the repository and it works correctly. -- nosy: +serwy type: - behavior versions: +Python 3.2, Python 3.3 ___ Python tracker

[issue8641] IDLE 3 doesn't highlights b, but u

2010-06-06 Thread Tal Einat
Tal Einat talei...@users.sourceforge.net added the comment: Attaching patch against current py3k branch. I simply replaced the occurrences of [rRuU] in the relevant regexps to [rRbB]. -- keywords: +patch nosy: +taleinat Added file:

[issue8641] IDLE 3 doesn't highlights b, but u

2010-06-06 Thread Ezio Melotti
Ezio Melotti ezio.melo...@gmail.com added the comment: See also #7166. -- nosy: +ezio.melotti, lieryan ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8641 ___

[issue8641] IDLE 3 doesn't highlights b, but u

2010-05-07 Thread Puzzlet Chung
New submission from Puzzlet Chung puzz...@gmail.com: IDLE 3.1.2 doesn't highlight b syntax, instead highlights u. Tested with IDLE (x86) 3.1.2 and Windows XP SP2. -- components: IDLE messages: 105184 nosy: puzzlet priority: normal severity: normal status: open title: IDLE 3 doesn't

[issue8641] IDLE 3 doesn't highlights b, but u

2010-05-07 Thread Terry J. Reedy
Terry J. Reedy tjre...@udel.edu added the comment: u'whatever' is not valid syntax for 3.x. In any case, with IDLE on my WinXP 3.1.2 system, all string literals are green, with or without a leading b. If you want this to stay open, cut and paste the opening header like Python 3.1.2

[issue8641] IDLE 3 doesn't highlights b, but u

2010-05-07 Thread Puzzlet Chung
Puzzlet Chung puzz...@gmail.com added the comment: In any case, with IDLE on my WinXP 3.1.2 system, all string literals are green, with or without a leading b. The letter b should also be green, while it shows the letter u from u'string' in green, which it shouldn't as it's not valid