summaryrefslogtreecommitdiffstats
path: root/Modules/regexmodule.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1992-03-27 17:26:25 (GMT)
committerGuido van Rossum <guido@python.org>1992-03-27 17:26:25 (GMT)
commit4f1691d0d5b2f155f0171d76af4701883b289990 (patch)
tree29a3d0136f17a897ba9f129dea6caabb6705a695 /Modules/regexmodule.c
parent0c182a13222449ef7624c0e2cbc39ee97fdbf7a7 (diff)
downloadcpython-4f1691d0d5b2f155f0171d76af4701883b289990.zip
cpython-4f1691d0d5b2f155f0171d76af4701883b289990.tar.gz
cpython-4f1691d0d5b2f155f0171d76af4701883b289990.tar.bz2
Remove redundant vars
Diffstat (limited to 'Modules/regexmodule.c')
-rw-r--r--Modules/regexmodule.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/Modules/regexmodule.c b/Modules/regexmodule.c
index c6d559e..77daa77 100644
--- a/Modules/regexmodule.c
+++ b/Modules/regexmodule.c
@@ -87,7 +87,6 @@ reg_match(re, args)
regexobject *re;
object *args;
{
- object *v;
char *buffer;
int size;
int offset;
@@ -116,7 +115,6 @@ reg_search(re, args)
regexobject *re;
object *args;
{
- object *v;
char *buffer;
int size;
int offset;