]> granicus.if.org Git - python/commitdiff
bool is no longer required, it was only used for the print statement
authorNeal Norwitz <nnorwitz@gmail.com>
Mon, 26 Feb 2007 19:04:49 +0000 (19:04 +0000)
committerNeal Norwitz <nnorwitz@gmail.com>
Mon, 26 Feb 2007 19:04:49 +0000 (19:04 +0000)
Parser/Python.asdl
Parser/asdl_c.py

index fc1a6dab144719cd9363fb4f0146cc4b4c49f4d8..c5b64a992321353ce73b9d5f6ffd74addf5ce1f0 100644 (file)
@@ -1,4 +1,4 @@
--- ASDL's five builtin types are identifier, int, string, object, bool
+-- ASDL's five builtin types are identifier, int, string, object
 
 module Python version "$Revision$"
 {
index 4877853deaba7ba962d3aa0bd9dec5934bb9445e..325a2b6d2653c0902af48b3950eb926973422e9c 100755 (executable)
@@ -15,7 +15,7 @@ def get_c_type(name):
     """Return a string for the C name of the type.
 
     This function special cases the default types provided by asdl:
-    identifier, string, int, bool.
+    identifier, string, int.
     """
     # XXX ack!  need to figure out where Id is useful and where string
     if isinstance(name, asdl.Id):
@@ -288,8 +288,7 @@ class FunctionVisitor(PrototypeVisitor):
         emit("{")
         emit("%s p;" % ctype, 1)
         for argtype, argname, opt in args:
-            # XXX hack alert: false is allowed for a bool
-            if not opt and not (argtype == "bool" or argtype == "int"):
+            if not opt and argtype != "int":
                 emit("if (!%s) {" % argname, 1)
                 emit("PyErr_SetString(PyExc_ValueError,", 2)
                 msg = "field %s is required for %s" % (argname, name)
@@ -467,10 +466,6 @@ static PyObject* ast2obj_object(void *o)
 }
 #define ast2obj_identifier ast2obj_object
 #define ast2obj_string ast2obj_object
-static PyObject* ast2obj_bool(bool b)
-{
-    return PyBool_FromLong(b);
-}
 
 static PyObject* ast2obj_int(long b)
 {