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 /Python | |
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 'Python')
-rw-r--r-- | Python/import.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/import.c b/Python/import.c index 523a1c0..85ead86 100644 --- a/Python/import.c +++ b/Python/import.c @@ -3101,7 +3101,7 @@ imp_make_magic(long magic) buf[3] = (char) ((magic >> 24) & 0xff); return PyBytes_FromStringAndSize(buf, 4); -}; +} static PyObject * imp_get_magic(PyObject *self, PyObject *noargs) |