commit | d3f91908dd2c2ab79d16bfe235da34f2fc19c114 | [log] [tgz] |
---|---|---|
author | Neal Norwitz <nnorwitz@gmail.com> | Sat Sep 23 04:11:38 2006 +0000 |
committer | Neal Norwitz <nnorwitz@gmail.com> | Sat Sep 23 04:11:38 2006 +0000 |
tree | 6b34bb15ce35f8c3874df6480677701e792f41a5 | |
parent | 62e955ad134b1b4cdeb5875e8672ae16635a9f4b [diff] [blame] |
Remove extra semi-colons reported by Johnny Lee on python-dev. Backport if anyone cares.
diff --git a/Modules/almodule.c b/Modules/almodule.c index fbeb13a..0a45d2e 100644 --- a/Modules/almodule.c +++ b/Modules/almodule.c
@@ -1686,7 +1686,7 @@ { int res, param; ALparamInfo pinfo; - PyObject *v, *item;; + PyObject *v, *item; if (!PyArg_ParseTuple(args, "ii:GetParamInfo", &res, ¶m)) return NULL;