Deprecate Python 3.3 language level. Remove its usages (PY-27705)

This commit is contained in:
Semyon Proshev
2018-01-24 20:42:33 +03:00
parent 3053152d80
commit 408d0b8314
43 changed files with 136 additions and 133 deletions

View File

@@ -161,7 +161,7 @@ public class PythonHighlightingTest extends PyTestCase {
// PY-6703
public void testUnicode33() {
doTest(LanguageLevel.PYTHON33, true, false);
doTest(LanguageLevel.PYTHON34, true, false);
}
public void testParenthesizedGenerator() {
@@ -169,7 +169,7 @@ public class PythonHighlightingTest extends PyTestCase {
}
public void testStarInGenerator() { // PY-10177
doTest(LanguageLevel.PYTHON33, false, false);
doTest(LanguageLevel.PYTHON34, false, false);
}
public void testStarArgs() { // PY-6456