]> granicus.if.org Git - python/commit
SF patch #659536: Use PyArg_UnpackTuple where possible.
authorRaymond Hettinger <python@rcn.com>
Sun, 29 Dec 2002 16:33:45 +0000 (16:33 +0000)
committerRaymond Hettinger <python@rcn.com>
Sun, 29 Dec 2002 16:33:45 +0000 (16:33 +0000)
commitea3fdf44a29accd666a3b5f058539c351d921657
treeabf57eaa340195873a649d2d42d50e0dba856064
parentf8bcfb13f126d3990dbccecb48a3d74b11e7841e
SF patch #659536: Use PyArg_UnpackTuple where possible.

Obtain cleaner coding and a system wide
performance boost by using the fast, pre-parsed
PyArg_Unpack function instead of PyArg_ParseTuple
function which is driven by a format string.
Modules/mathmodule.c
Modules/operator.c
Objects/classobject.c
Objects/descrobject.c
Objects/dictobject.c
Objects/fileobject.c
Objects/funcobject.c
Objects/listobject.c
Objects/sliceobject.c
Objects/stringobject.c
Python/bltinmodule.c