summaryrefslogtreecommitdiff
path: root/Objects/weakrefobject.c
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2010-11-09 09:32:19 +0000
committerVictor Stinner <victor.stinner@haypocalc.com>2010-11-09 09:32:19 +0000
commitf51cc3fcfc4352e6cc8f0e7292594aa5a462c45d (patch)
tree82b1e2967b7f2c23b665e51f12643220d7ccc57b /Objects/weakrefobject.c
parent6672fb8bfa4fe397b148844f32df67692f5cff18 (diff)
downloadcpython-f51cc3fcfc4352e6cc8f0e7292594aa5a462c45d.tar.gz
Issue #10359: Remove ";" after function definition, invalid in ISO C
Diffstat (limited to 'Objects/weakrefobject.c')
-rw-r--r--Objects/weakrefobject.c2
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[] = {