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

2011-12-07 Thread Ned Deily
Ned Deily 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 -> closed ve

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

2011-12-07 Thread Roundup Robot
Roundup Robot 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 'default': Issue #8641: Update I

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

2011-12-06 Thread Roger Serwy
Roger Serwy 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-05 Thread Ezio Melotti
Ezio Melotti added the comment: See also #7166. -- nosy: +ezio.melotti, lieryan ___ Python tracker ___ ___ Python-bugs-list mailing li

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

2010-06-05 Thread Tal Einat
Tal Einat 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: http://bugs.python.org/file17568/IDLE_py3k_string_highlighting.diff

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

2010-05-07 Thread Puzzlet Chung
Puzzlet Chung 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 anymore. Tested in ID

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

2010-05-07 Thread Terry J. Reedy
Terry J. Reedy 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 (r312:79149, Mar 21 2010, 00

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

2010-05-06 Thread Puzzlet Chung
New submission from Puzzlet Chung : 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 highlights b"", b