Commit c9f7222
cclauss
ur'string' is Py3 SyntaxError, use u'string' instead
$ python2
```
$ python2
Python 2.7.13 (default, Jul 18 2017, 09:17:00)
[GCC 4.2.1 Compatible Apple LLVM 8.1.0 (clang-802.0.42)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> ur"[\w\u2E80-\u9FFF]" == u"[\w\u2E80-\u9FFF]"
True
>>> ur"[\w\u2E80-\u9FFF]" == r"[\w\u2E80-\u9FFF]"
False
```1 parent 71a80a8 commit c9f7222
1 file changed
+2
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
86 | 86 | | |
87 | 87 | | |
88 | 88 | | |
89 | | - | |
| 89 | + | |
90 | 90 | | |
91 | 91 | | |
92 | 92 | | |
| |||
141 | 141 | | |
142 | 142 | | |
143 | 143 | | |
144 | | - | |
| 144 | + | |
0 commit comments