@@ -148,24 +148,29 @@ def lib2to3_unparse(node: Node) -> str:
148
148
149
149
150
150
def parse_single_version (
151
- src : str , version : Tuple [int , int ]
151
+ src : str , version : Tuple [int , int ], * , type_comments : bool
152
152
) -> Union [ast .AST , ast3 .AST ]:
153
153
filename = "<unknown>"
154
154
# typed-ast is needed because of feature version limitations in the builtin ast 3.8>
155
155
if sys .version_info >= (3 , 8 ) and version >= (3 ,):
156
- return ast .parse (src , filename , feature_version = version , type_comments = True )
156
+ return ast .parse (
157
+ src , filename , feature_version = version , type_comments = type_comments
158
+ )
157
159
158
160
if _IS_PYPY :
159
161
# PyPy 3.7 doesn't support type comment tracking which is not ideal, but there's
160
162
# not much we can do as typed-ast won't work either.
161
163
if sys .version_info >= (3 , 8 ):
162
- return ast3 .parse (src , filename , type_comments = True )
164
+ return ast3 .parse (src , filename , type_comments = type_comments )
163
165
else :
164
166
return ast3 .parse (src , filename )
165
167
else :
166
- # Typed-ast is guaranteed to be used here and automatically tracks type
167
- # comments separately.
168
- return ast3 .parse (src , filename , feature_version = version [1 ])
168
+ if type_comments :
169
+ # Typed-ast is guaranteed to be used here and automatically tracks type
170
+ # comments separately.
171
+ return ast3 .parse (src , filename , feature_version = version [1 ])
172
+ else :
173
+ return ast .parse (src , filename )
169
174
170
175
171
176
def parse_ast (src : str ) -> Union [ast .AST , ast3 .AST ]:
@@ -175,11 +180,18 @@ def parse_ast(src: str) -> Union[ast.AST, ast3.AST]:
175
180
first_error = ""
176
181
for version in sorted (versions , reverse = True ):
177
182
try :
178
- return parse_single_version (src , version )
183
+ return parse_single_version (src , version , type_comments = True )
179
184
except SyntaxError as e :
180
185
if not first_error :
181
186
first_error = str (e )
182
187
188
+ # Try to parse without type comments
189
+ for version in sorted (versions , reverse = True ):
190
+ try :
191
+ return parse_single_version (src , version , type_comments = False )
192
+ except SyntaxError :
193
+ pass
194
+
183
195
raise SyntaxError (first_error )
184
196
185
197
0 commit comments