[Python-checkins] cpython: the bool asdl type died a while ago

benjamin.peterson python-checkins at python.org
Tue Aug 9 23:17:25 CEST 2011


http://hg.python.org/cpython/rev/ec9485e2acde
changeset:   71793:ec9485e2acde
user:        Benjamin Peterson <benjamin at python.org>
date:        Tue Aug 09 16:10:09 2011 -0500
summary:
  the bool asdl type died a while ago

files:
  Parser/asdl.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Parser/asdl.py b/Parser/asdl.py
--- a/Parser/asdl.py
+++ b/Parser/asdl.py
@@ -228,7 +228,7 @@
         " 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

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list