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 /Objects | |
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 'Objects')
-rw-r--r-- | Objects/weakrefobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/weakrefobject.c b/Objects/weakrefobject.c index 7a2c1bd..13323cf 100644 --- a/Objects/weakrefobject.c +++ b/Objects/weakrefobject.c @@ -583,7 +583,7 @@ proxy_iternext(PyWeakReference *proxy) } -WRAP_METHOD(proxy_bytes, "__bytes__"); +WRAP_METHOD(proxy_bytes, "__bytes__") static PyMethodDef proxy_methods[] = { |