Highlight module builtin methods as not allowed to be async (PY-28017)

This commit is contained in:
Semyon Proshev
2018-01-16 15:31:16 +03:00
parent 36f657d77b
commit 51eaba1aa2
3 changed files with 23 additions and 5 deletions

View File

@@ -276,6 +276,11 @@ public class PythonHighlightingTest extends PyTestCase {
doTest(LanguageLevel.PYTHON35, true, false);
}
// PY-28017
public void testAsyncModuleBuiltinMethods() {
doTest(LanguageLevel.PYTHON37, true, false);
}
public void testImplicitOctLongInteger() {
doTest(LanguageLevel.PYTHON35, true, false);
}