diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2002-12-02 04:44:33 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2002-12-02 04:44:33 (GMT) |
commit | e81583037b34e21d0e5638e139a24a918e112ab8 (patch) | |
tree | 9ea1d257ef4e1019d559a13046e6273b73cf7d2b | |
parent | cca4dd1c0fd9661c7d654b0bad35c7f460bef58e (diff) | |
download | cpython-e81583037b34e21d0e5638e139a24a918e112ab8.zip cpython-e81583037b34e21d0e5638e139a24a918e112ab8.tar.gz cpython-e81583037b34e21d0e5638e139a24a918e112ab8.tar.bz2 |
Remove unused variable
-rw-r--r-- | Doc/ext/run-func.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/ext/run-func.c b/Doc/ext/run-func.c index 842f15a..7733439 100644 --- a/Doc/ext/run-func.c +++ b/Doc/ext/run-func.c @@ -5,7 +5,7 @@ main(int argc, char *argv[]) { PyObject *pName, *pModule, *pDict, *pFunc; PyObject *pArgs, *pValue; - int i, result; + int i; if (argc < 3) { fprintf(stderr,"Usage: call pythonfile funcname [args]\n"); |