mirror of
https://github.com/python/cpython.git
synced 2026-06-23 03:23:38 -04:00
8ae4689657
* 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)