mirror of
https://github.com/python/cpython.git
synced 2025-11-01 18:51:43 +00:00
Remove some unused variables.
This commit is contained in:
parent
2977e5d660
commit
860986812a
1 changed files with 0 additions and 9 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue