Raymond Hettinger 8ae4689657 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)
2003-10-12 19:09:37 +00:00
..
2002-06-11 06:22:31 +00:00
2002-08-15 14:59:02 +00:00
2002-12-30 22:08:05 +00:00
2003-06-21 21:35:25 +00:00
2002-06-11 06:22:31 +00:00