[issue22328] ur'foo\d' raises SyntaxError

2014-09-02 Thread R. David Murray
R. David Murray added the comment: This is a conscious design decision. See issue 15096. -- nosy: +r.david.murray resolution: -> not a bug stage: -> resolved status: open -> closed superseder: -> Drop support for the "ur" string prefix ___ Python

[issue22328] ur'foo\d' raises SyntaxError

2014-09-02 Thread Markus Unterwaditzer
New submission from Markus Unterwaditzer: The string literal `ur'foo\d'` causes a SyntaxError while the equivalent `r'foo\d'` causes the correct string to be produced. -- components: Interpreter Core messages: 226281 nosy: untitaker priority: normal severity: normal status: open title: