StringConstantAnnotator performs all checks per node, doesn't do lexer's job again (PY-2802)

This commit is contained in:
Dmitry Jemerov
2011-02-22 17:12:45 +01:00
parent 51aefc768f
commit 604d8dc4b3
5 changed files with 43 additions and 63 deletions

View File

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