PY-3363: don't highlight escapes in raw strings

This commit is contained in:
Dmitry Cheryasov
2011-06-05 17:07:29 +03:00
parent fd6eb5416a
commit a01af2e223
2 changed files with 18 additions and 5 deletions

View File

@@ -166,6 +166,10 @@ public class PythonHighlightingTest extends PyLightFixtureTestCase {
doTest();
}
public void testUnicodeOrByteRaw() {
doTest(LanguageLevel.PYTHON25, true, true);
}
public void testUnicodeOrByte25() {
doTest(LanguageLevel.PYTHON25, true, true);
}