From: Benjamin Peterson Date: Tue, 9 Aug 2011 21:10:09 +0000 (-0500) Subject: the bool asdl type died a while ago X-Git-Tag: v3.3.0a1~1732 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4dc64996137344455f8dc348bccbd7a9f3f24002;p=thirdparty%2FPython%2Fcpython.git the bool asdl type died a while ago --- diff --git a/Parser/asdl.py b/Parser/asdl.py index c90d2e26c33c..01a8b5ebf7e9 100644 --- a/Parser/asdl.py +++ b/Parser/asdl.py @@ -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