commit | 7784f12d745e5f0d2e4c9e98c792f026897325ea | [log] [tgz] |
---|---|---|
author | Georg Brandl <georg@python.org> | Fri May 26 20:04:44 2006 +0000 |
committer | Georg Brandl <georg@python.org> | Fri May 26 20:04:44 2006 +0000 |
tree | 9945840040eee759972df75935ff6a84d4ceb308 | |
parent | 07bbfc6a51578ac0acd8be5ccf2387299d1814f5 [diff] [blame] |
Replace Py_BuildValue("OO") by PyTuple_Pack.
diff --git a/Python/ast.c b/Python/ast.c index 9664590..f3e611b 100644 --- a/Python/ast.c +++ b/Python/ast.c
@@ -107,7 +107,7 @@ Py_DECREF(errstr); return; } - value = Py_BuildValue("(OO)", errstr, tmp); + value = PyTuple_Pack(2, errstr, tmp); Py_DECREF(errstr); Py_DECREF(tmp); if (!value)