[pywin32-checkins] pywin32/isapi/src PyFilterObjects.cpp,1.9,1.10
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2008-04-11 00:27:41
|
Update of /cvsroot/pywin32/pywin32/isapi/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18459/isapi/src Modified Files: PyFilterObjects.cpp Log Message: Correct method name in PyArg_ParseTuple format string Index: PyFilterObjects.cpp =================================================================== RCS file: /cvsroot/pywin32/pywin32/isapi/src/PyFilterObjects.cpp,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** PyFilterObjects.cpp 22 Feb 2008 23:03:06 -0000 1.9 --- PyFilterObjects.cpp 11 Apr 2008 00:27:45 -0000 1.10 *************** *** 222,226 **** // @pyparm string|data|| // @pyparm int|reserverd|0| ! if (!PyArg_ParseTuple(args, "s|l:WriteClient", &buffer, &reserved)) return NULL; --- 222,226 ---- // @pyparm string|data|| // @pyparm int|reserverd|0| ! if (!PyArg_ParseTuple(args, "s|l:AddResponseHeaders", &buffer, &reserved)) return NULL; |