commit | 6ecf77b3f8c981a695d4116b010755676bcc61e2 | [log] [tgz] |
---|---|---|
author | Armin Ronacher <armin.ronacher@active-4.com> | Sun Mar 04 12:04:06 2012 +0000 |
committer | Armin Ronacher <armin.ronacher@active-4.com> | Sun Mar 04 12:04:06 2012 +0000 |
tree | 6d8f597f8fd2796f997a814d6d20092dc9344398 | |
parent | 745ccf8b1a5d5ee8d8a72b17ebaa0bc5533b0fed [diff] [blame] |
Basic support for PEP 414 without docs or tests.
diff --git a/Python/ast.c b/Python/ast.c index c565642..0f93098 100644 --- a/Python/ast.c +++ b/Python/ast.c
@@ -3796,6 +3796,9 @@ quote = *++s; *bytesmode = 1; } + else if (quote == 'u' || quote == 'U') { + quote = *++s; + } else if (quote == 'r' || quote == 'R') { quote = *++s; rawmode = 1;