From: Guido van Rossum Date: Mon, 19 Aug 1996 22:02:43 +0000 (+0000) Subject: Remove some unused variables. X-Git-Tag: v1.4b3~122 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=860986812a4ff02d932572fffaa24970819f128f;p=thirdparty%2FPython%2Fcpython.git Remove some unused variables. --- diff --git a/Modules/stropmodule.c b/Modules/stropmodule.c index 171b712184bd..ef943a431146 100644 --- a/Modules/stropmodule.c +++ b/Modules/stropmodule.c @@ -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); }