mark SyntaxError__str__ as METH_VARARGS

This commit is contained in:
Jeremy Hylton 2000-06-20 18:36:26 +00:00
parent bdd44a389b
commit 2d15d9d869
1 changed files with 1 additions and 1 deletions

View File

@ -727,7 +727,7 @@ SyntaxError__str__(PyObject* self, PyObject* args)
PyMethodDef SyntaxError_methods[] = {
{"__init__", SyntaxError__init__, 1},
{"__str__", SyntaxError__str__,},
{"__str__", SyntaxError__str__, 1},
{NULL, NULL}
};