]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Remove some unused variables.
authorGuido van Rossum <guido@python.org>
Mon, 19 Aug 1996 22:02:43 +0000 (22:02 +0000)
committerGuido van Rossum <guido@python.org>
Mon, 19 Aug 1996 22:02:43 +0000 (22:02 +0000)
Modules/stropmodule.c

index 171b712184bd64c08217d778de4f2fe899e70896..ef943a431146ac6d26f08df3240e8f6a61430371 100644 (file)
@@ -342,9 +342,6 @@ strop_strip(self, args)
        object *self; /* Not used */
        object *args;
 {
-       char *s;
-       int len, i, j;
-
        return do_strip(args, BOTHSTRIP);
 }
 
@@ -353,9 +350,6 @@ strop_lstrip(self, args)
        object *self; /* Not used */
        object *args;
 {
-       char *s;
-       int len, i, j;
-
        return do_strip(args, LEFTSTRIP);
 }
 
@@ -364,9 +358,6 @@ strop_rstrip(self, args)
        object *self; /* Not used */
        object *args;
 {
-       char *s;
-       int len, i, j;
-
        return do_strip(args, RIGHTSTRIP);
 }