]> granicus.if.org Git - python/commitdiff
- Issue #5590: Remove unused global variable in pyexpat extension.
authorMatthias Klose <doko@ubuntu.com>
Mon, 22 Jun 2009 13:05:52 +0000 (13:05 +0000)
committerMatthias Klose <doko@ubuntu.com>
Mon, 22 Jun 2009 13:05:52 +0000 (13:05 +0000)
Misc/NEWS
Modules/pyexpat.c

index d433d4ca6b7c221b77a113d6fe7dccd2f1f51329..9639cac5a9412b8383944a9aafe18e156371086b 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -26,6 +26,11 @@ Library
 - Issue #6271: mmap tried to close invalid file handle (-1) when anonymous.
   (On Unix)
 
+Extension Modules
+-----------------
+
+- Issue #5590: Remove unused global variable in pyexpat extension.
+
 
 What's New in Python 3.1 Release Candidate 2?
 =============================================
index 7a862c0f6d216a6090b15f540ff43e456bcee966..1b9ffcac4b28d32aca6bab49abfed3d0d8d6a97b 100644 (file)
@@ -1169,7 +1169,6 @@ static struct PyMethodDef xmlparse_methods[] = {
 */
 
 static char template_buffer[257];
-PyObject *template_string = NULL;
 
 static void
 init_template_buffer(void)