0
0
mirror of https://github.com/python/cpython.git synced 2024-11-28 08:20:55 +01:00

Remove some unused variables.

This commit is contained in:
Guido van Rossum 1996-08-19 22:02:43 +00:00
parent 2977e5d660
commit 860986812a

View 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);
}