diff options
author | Guido van Rossum <guido@python.org> | 1998-04-10 21:52:06 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1998-04-10 21:52:06 (GMT) |
commit | 39b0f8976caeb81e475454424f2a8d6e39609f52 (patch) | |
tree | 6ce7a1c3f4e4f236ef5ed6cb2d9d1dce38eef918 /Modules/pcremodule.c | |
parent | 462a5495fb3e2df2163d38dfc27615004aada942 (diff) | |
download | cpython-39b0f8976caeb81e475454424f2a8d6e39609f52.zip cpython-39b0f8976caeb81e475454424f2a8d6e39609f52.tar.gz cpython-39b0f8976caeb81e475454424f2a8d6e39609f52.tar.bz2 |
Address warnings issued by the MSVC++ compiler
Diffstat (limited to 'Modules/pcremodule.c')
-rw-r--r-- | Modules/pcremodule.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Modules/pcremodule.c b/Modules/pcremodule.c index 07a36fa..40efd03 100644 --- a/Modules/pcremodule.c +++ b/Modules/pcremodule.c @@ -193,7 +193,6 @@ PyPcre_compile(self, args) PyObject *dictionary; char *pattern; const char *error; - int num_zeros, i, j; int options, erroroffset; if (!PyArg_ParseTuple(args, "siO!", &pattern, &options, |