false positive on escaped backslash in string literal (PY-2994)

This commit is contained in:
Dmitry Jemerov
2011-03-23 16:53:29 +01:00
parent 31491c42a2
commit ac6c054c56
3 changed files with 7 additions and 1 deletions

View File

@@ -142,6 +142,10 @@ public class PythonHighlightingTest extends PyLightFixtureTestCase {
doTest(true, false);
}
public void testEscapedBackslash() { // PY-2994
doTest(true, false);
}
public void testUnsupportedFeaturesInPython3() {
doTest(LanguageLevel.PYTHON30, true, false);
}