]> granicus.if.org Git - python/commitdiff
the bool asdl type died a while ago
authorBenjamin Peterson <benjamin@python.org>
Tue, 9 Aug 2011 21:10:09 +0000 (16:10 -0500)
committerBenjamin Peterson <benjamin@python.org>
Tue, 9 Aug 2011 21:10:09 +0000 (16:10 -0500)
Parser/asdl.py

index c90d2e26c33c3f2dd79b80128ec308fabed5ab95..01a8b5ebf7e904539dd63fc9d6598d8b8ea29c1a 100644 (file)
@@ -228,7 +228,7 @@ class ASDLParser(spark.GenericParser, object):
         " field ::= Id ? "
         return Field(type[0], opt=True)
 
-builtin_types = ("identifier", "string", "bytes", "int", "bool", "object")
+builtin_types = ("identifier", "string", "bytes", "int", "object")
 
 # below is a collection of classes to capture the AST of an AST :-)
 # not sure if any of the methods are useful yet, but I'm adding them