Commit 86098681 authored by Guido van Rossum's avatar Guido van Rossum

Remove some unused variables.

parent 2977e5d6
...@@ -342,9 +342,6 @@ strop_strip(self, args) ...@@ -342,9 +342,6 @@ strop_strip(self, args)
object *self; /* Not used */ object *self; /* Not used */
object *args; object *args;
{ {
char *s;
int len, i, j;
return do_strip(args, BOTHSTRIP); return do_strip(args, BOTHSTRIP);
} }
...@@ -353,9 +350,6 @@ strop_lstrip(self, args) ...@@ -353,9 +350,6 @@ strop_lstrip(self, args)
object *self; /* Not used */ object *self; /* Not used */
object *args; object *args;
{ {
char *s;
int len, i, j;
return do_strip(args, LEFTSTRIP); return do_strip(args, LEFTSTRIP);
} }
...@@ -364,9 +358,6 @@ strop_rstrip(self, args) ...@@ -364,9 +358,6 @@ strop_rstrip(self, args)
object *self; /* Not used */ object *self; /* Not used */
object *args; object *args;
{ {
char *s;
int len, i, j;
return do_strip(args, RIGHTSTRIP); return do_strip(args, RIGHTSTRIP);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment