]> granicus.if.org Git - python/commitdiff
#15923: fix a mistake in asdl_c.py that resulted in a TypeError after 2801bf875a24...
authorEzio Melotti <ezio.melotti@gmail.com>
Sun, 30 Sep 2012 19:41:37 +0000 (22:41 +0300)
committerEzio Melotti <ezio.melotti@gmail.com>
Sun, 30 Sep 2012 19:41:37 +0000 (22:41 +0300)
Misc/NEWS
Parser/asdl_c.py

index e46b9a5774af38b3c0ada1e76c66c98791c92955..759ec4d9c5b13e8ccaf5c23c5f7aeb6b88686d47 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -430,6 +430,9 @@ Tests
 Build
 -----
 
+- Issue #15923: fix a mistake in asdl_c.py that resulted in a TypeError after
+  2801bf875a24 (see #15801).
+
 - Issue #11715: Fix multiarch detection without having Debian development
   tools (dpkg-dev) installed.
 
index 6a465490b6a833b31b9b4f40409fa4bc0d0a24a3..b6448c93def32e6c3cae55367630a4af9f8abec4 100755 (executable)
@@ -1033,7 +1033,7 @@ class ObjVisitor(PickleVisitor):
             self.emit("case %s:" % t.name, 2)
             self.emit("Py_INCREF(%s_singleton);" % t.name, 3)
             self.emit("return %s_singleton;" % t.name, 3)
-        self.emit("default:" % name, 2)
+        self.emit("default:", 2)
         self.emit('/* should never happen, but just in case ... */', 3)
         code = "PyErr_Format(PyExc_SystemError, \"unknown %s found\");" % name
         self.emit(code, 3, reflow=False)