Use to handle legacy async/await handling in assert_equivalent
This commit is contained in:
parent
f5381c7c5f
commit
6bb90f22ed
13
black.py
13
black.py
@ -3382,9 +3382,14 @@ def __str__(self) -> str:
|
|||||||
|
|
||||||
|
|
||||||
def parse_ast(src: str) -> Union[ast3.AST, ast27.AST]:
|
def parse_ast(src: str) -> Union[ast3.AST, ast27.AST]:
|
||||||
|
for feature_version in (7, 6):
|
||||||
try:
|
try:
|
||||||
return ast3.parse(src)
|
print(f"-- 3.{feature_version}")
|
||||||
|
return ast3.parse(src, feature_version=feature_version)
|
||||||
except SyntaxError:
|
except SyntaxError:
|
||||||
|
continue
|
||||||
|
|
||||||
|
print(f"-- 2.7")
|
||||||
return ast27.parse(src)
|
return ast27.parse(src)
|
||||||
|
|
||||||
|
|
||||||
@ -3438,11 +3443,9 @@ def _v(node: Union[ast3.AST, ast27.AST], depth: int = 0) -> Iterator[str]:
|
|||||||
try:
|
try:
|
||||||
src_ast = parse_ast(src)
|
src_ast = parse_ast(src)
|
||||||
except Exception as exc:
|
except Exception as exc:
|
||||||
major, minor = sys.version_info[:2]
|
|
||||||
raise AssertionError(
|
raise AssertionError(
|
||||||
f"cannot use --safe with this file; failed to parse source file "
|
f"cannot use --safe with this file; failed to parse source file. "
|
||||||
f"with Python {major}.{minor}'s builtin AST. Re-run with --fast "
|
f"AST error message: {exc}"
|
||||||
f"or stop using deprecated Python 2 syntax. AST error message: {exc}"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
Loading…
Reference in New Issue
Block a user