summaryrefslogtreecommitdiffstats
path: root/Parser
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2011-08-09 21:10:09 (GMT)
committerBenjamin Peterson <benjamin@python.org>2011-08-09 21:10:09 (GMT)
commit4dc64996137344455f8dc348bccbd7a9f3f24002 (patch)
tree4708cb139e9ecfcc7070e48c1e20285d227a8667 /Parser
parente2498419034eade424fa744e1505980e64ba759b (diff)
downloadcpython-4dc64996137344455f8dc348bccbd7a9f3f24002.zip
cpython-4dc64996137344455f8dc348bccbd7a9f3f24002.tar.gz
cpython-4dc64996137344455f8dc348bccbd7a9f3f24002.tar.bz2
the bool asdl type died a while ago
Diffstat (limited to 'Parser')
-rw-r--r--Parser/asdl.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Parser/asdl.py b/Parser/asdl.py
index c90d2e2..01a8b5e 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