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

This commit is contained in:
Semyon Proshev
2018-01-24 18:58:21 +03:00
parent 3756ddea59
commit 3053152d80
39 changed files with 122 additions and 126 deletions

View File

@@ -164,11 +164,6 @@ public class PythonHighlightingTest extends PyTestCase {
doTest(LanguageLevel.PYTHON33, true, false);
}
// PY-6702
public void testYieldFromBefore33() {
doTest(LanguageLevel.PYTHON32, true, false);
}
public void testParenthesizedGenerator() {
doTest(false, false);
}
@@ -178,7 +173,7 @@ public class PythonHighlightingTest extends PyTestCase {
}
public void testStarArgs() { // PY-6456
doTest(LanguageLevel.PYTHON32, true, false);
doTest(LanguageLevel.PYTHON34, true, false);
}
public void testDocstring() { // PY-8025