Skip to content

Commit ce013dc

Browse files
author
whitequark
committed
Implement stub parsing of Python 3.6.
1 parent 0ac31a8 commit ce013dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pythonparser/parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -419,7 +419,7 @@ def _init_version(self, version):
419419
self.expr_stmt_1 = self.expr_stmt_1__26
420420
self.yield_expr = self.yield_expr__26
421421
return
422-
elif version in ((3, 0), (3, 1), (3, 2), (3, 3), (3, 4), (3, 5)):
422+
elif version in ((3, 0), (3, 1), (3, 2), (3, 3), (3, 4), (3, 5), (3, 6)):
423423
if version == (3, 0):
424424
self.with_stmt = self.with_stmt__26 # lol
425425
else:

0 commit comments

Comments
 (0)