diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2010-11-09 09:32:19 +0000 |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2010-11-09 09:32:19 +0000 |
commit | 3e2b7171bf29f80c06805e60741b5b813376294e (patch) | |
tree | b960e5babf48bba22a5a4ff23fdc0fc1746cae13 /Objects/weakrefobject.c | |
parent | 572895b8ebbd694b8b004d6c2649f0ea647c6bf0 (diff) | |
download | cpython-git-3e2b7171bf29f80c06805e60741b5b813376294e.tar.gz |
Issue #10359: Remove ";" after function definition, invalid in ISO C
Diffstat (limited to 'Objects/weakrefobject.c')
-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 7a2c1bda32..13323cfbcf 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[] = { |