diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2010-11-09 09:32:19 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2010-11-09 09:32:19 (GMT) |
commit | 3e2b7171bf29f80c06805e60741b5b813376294e (patch) | |
tree | b960e5babf48bba22a5a4ff23fdc0fc1746cae13 /Modules | |
parent | 572895b8ebbd694b8b004d6c2649f0ea647c6bf0 (diff) | |
download | cpython-3e2b7171bf29f80c06805e60741b5b813376294e.zip cpython-3e2b7171bf29f80c06805e60741b5b813376294e.tar.gz cpython-3e2b7171bf29f80c06805e60741b5b813376294e.tar.bz2 |
Issue #10359: Remove ";" after function definition, invalid in ISO C
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/_testcapimodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_testcapimodule.c b/Modules/_testcapimodule.c index 597a88b..8413641 100644 --- a/Modules/_testcapimodule.c +++ b/Modules/_testcapimodule.c @@ -1792,7 +1792,7 @@ test_unicode_compare_with_ascii(PyObject *self) { return NULL; } Py_RETURN_NONE; -}; +} /* This is here to provide a docstring for test_descr. */ static PyObject * |