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:
parent
2977e5d660
commit
860986812a
@ -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);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user