SIGN IN SIGN UP
python / cpython UNCLAIMED

The Python programming language

0 0 18 Python

Simplify and speedup uses of Py_BuildValue():

* Py_BuildValue("(OOO)",a,b,c)  -->  PyTuple_Pack(3,a,b,c)
* Py_BuildValue("()",a)         -->  PyTuple_New(0)
* Py_BuildValue("O", a)         -->  Py_INCREF(a)
R
Raymond Hettinger committed
8ae468965700fd9900efc28bff8fa2015dae2bef
Parent: cb2da43