commit | 9582c148b6bd0ff21678030709f51e7f57b223bd | [log] [tgz] |
---|---|---|
author | Skip Montanaro <skip@pobox.com> | Tue Apr 18 01:01:41 2006 +0000 |
committer | Skip Montanaro <skip@pobox.com> | Tue Apr 18 01:01:41 2006 +0000 |
tree | 9b91b75a2dec93e70ee019b9466ee79786ff34c3 | |
parent | ceb3087e1c6456ab3c6db533bb7bc1b5c4ca97a9 [diff] [blame] |
correct function signature
diff --git a/Modules/_testcapimodule.c b/Modules/_testcapimodule.c index 1138258..e8881dc 100644 --- a/Modules/_testcapimodule.c +++ b/Modules/_testcapimodule.c
@@ -234,7 +234,7 @@ #include "testcapi_long.h" static PyObject * -test_longlong_api(PyObject* self) +test_longlong_api(PyObject* self, PyObject *args) { return TESTNAME(raise_test_longlong_error); }