]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
vgetargs1() and vgetargskeywords(): Replace uses of PyTuple_Size() and
authorJeremy Hylton <jeremy@alum.mit.edu>
Fri, 18 May 2001 20:57:38 +0000 (20:57 +0000)
committerJeremy Hylton <jeremy@alum.mit.edu>
Fri, 18 May 2001 20:57:38 +0000 (20:57 +0000)
commit0f8117f14a98d697828b96ec1130105332f67dad
treeeadb5ca3c49d99c90d6bf1dca3bb56f4fa4da1dc
parentda20fce9c329acd8cf06162bd22be6e9b1fc1bc8
vgetargs1() and vgetargskeywords(): Replace uses of PyTuple_Size() and
    PyTuple_GetItem() with PyTuple_GET_SIZE() and PyTuple_GET_ITEM().
    The code has already done a PyTuple_Check().
Python/getargs.c