Skip to content

Commit 4dc6499

Browse files
committed
the bool asdl type died a while ago
1 parent e249841 commit 4dc6499

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Parser/asdl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ def p_field_5(self, type_):
228228
" field ::= Id ? "
229229
return Field(type[0], opt=True)
230230

231-
builtin_types = ("identifier", "string", "bytes", "int", "bool", "object")
231+
builtin_types = ("identifier", "string", "bytes", "int", "object")
232232

233233
# below is a collection of classes to capture the AST of an AST :-)
234234
# not sure if any of the methods are useful yet, but I'm adding them

0 commit comments

Comments
 (0)