diff options
author | Guido van Rossum <guido@python.org> | 1992-03-27 17:26:25 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1992-03-27 17:26:25 (GMT) |
commit | 4f1691d0d5b2f155f0171d76af4701883b289990 (patch) | |
tree | 29a3d0136f17a897ba9f129dea6caabb6705a695 /Modules | |
parent | 0c182a13222449ef7624c0e2cbc39ee97fdbf7a7 (diff) | |
download | cpython-4f1691d0d5b2f155f0171d76af4701883b289990.zip cpython-4f1691d0d5b2f155f0171d76af4701883b289990.tar.gz cpython-4f1691d0d5b2f155f0171d76af4701883b289990.tar.bz2 |
Remove redundant vars
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/regexmodule.c | 2 |
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; |