From: Ezio Melotti Date: Sun, 30 Sep 2012 19:41:37 +0000 (+0300) Subject: #15923: fix a mistake in asdl_c.py that resulted in a TypeError after 2801bf875a24... X-Git-Tag: v3.3.1rc1~813^2~25 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cb2916a7144679cdc9a5df430dfc1344e02243fb;p=python #15923: fix a mistake in asdl_c.py that resulted in a TypeError after 2801bf875a24 (see #15801). --- diff --git a/Misc/NEWS b/Misc/NEWS index d22347d838..19a627a251 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -564,6 +564,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. diff --git a/Parser/asdl_c.py b/Parser/asdl_c.py index b85c07ec1b..7f613db65a 100755 --- a/Parser/asdl_c.py +++ b/Parser/asdl_c.py @@ -1010,7 +1010,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)