diff options
author | Matthias Klose <doko@ubuntu.com> | 2009-06-22 13:05:52 (GMT) |
---|---|---|
committer | Matthias Klose <doko@ubuntu.com> | 2009-06-22 13:05:52 (GMT) |
commit | ab2b7559e27ca6a8fd8af5cae00e484bfd83ba4d (patch) | |
tree | 59c9764dfbdeea93f5d19800ff82d48a6fc18298 /Modules | |
parent | ef83ab9db5bda91bd19224c28aa9267f398bb7bf (diff) | |
download | cpython-ab2b7559e27ca6a8fd8af5cae00e484bfd83ba4d.zip cpython-ab2b7559e27ca6a8fd8af5cae00e484bfd83ba4d.tar.gz cpython-ab2b7559e27ca6a8fd8af5cae00e484bfd83ba4d.tar.bz2 |
- Issue #5590: Remove unused global variable in pyexpat extension.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/pyexpat.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Modules/pyexpat.c b/Modules/pyexpat.c index 7a862c0..1b9ffca 100644 --- a/Modules/pyexpat.c +++ b/Modules/pyexpat.c @@ -1169,7 +1169,6 @@ static struct PyMethodDef xmlparse_methods[] = { */ static char template_buffer[257]; -PyObject *template_string = NULL; static void init_template_buffer(void) |