summaryrefslogtreecommitdiffstats
path: root/Modules/stropmodule.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1996-08-19 22:02:43 (GMT)
committerGuido van Rossum <guido@python.org>1996-08-19 22:02:43 (GMT)
commit860986812a4ff02d932572fffaa24970819f128f (patch)
tree888580a1b95a196dbdbda3b52142f1fede137abb /Modules/stropmodule.c
parent2977e5d660ee28f19585f5512254aad6e8020412 (diff)
downloadcpython-860986812a4ff02d932572fffaa24970819f128f.zip
cpython-860986812a4ff02d932572fffaa24970819f128f.tar.gz
cpython-860986812a4ff02d932572fffaa24970819f128f.tar.bz2
Remove some unused variables.
Diffstat (limited to 'Modules/stropmodule.c')
-rw-r--r--Modules/stropmodule.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/Modules/stropmodule.c b/Modules/stropmodule.c
index 171b712..ef943a4 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);
}