[Python-checkins] r73503 - in python/branches/py3k: Misc/NEWS Modules/pyexpat.c

matthias.klose python-checkins at python.org
Mon Jun 22 15:05:52 CEST 2009


Author: matthias.klose
Date: Mon Jun 22 15:05:52 2009
New Revision: 73503

Log:
- Issue #5590: Remove unused global variable in pyexpat extension.


Modified:
   python/branches/py3k/Misc/NEWS
   python/branches/py3k/Modules/pyexpat.c

Modified: python/branches/py3k/Misc/NEWS
==============================================================================
--- python/branches/py3k/Misc/NEWS	(original)
+++ python/branches/py3k/Misc/NEWS	Mon Jun 22 15:05:52 2009
@@ -26,6 +26,11 @@
 - 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?
 =============================================

Modified: python/branches/py3k/Modules/pyexpat.c
==============================================================================
--- python/branches/py3k/Modules/pyexpat.c	(original)
+++ python/branches/py3k/Modules/pyexpat.c	Mon Jun 22 15:05:52 2009
@@ -1169,7 +1169,6 @@
 */
 
 static char template_buffer[257];
-PyObject *template_string = NULL;
 
 static void
 init_template_buffer(void)


More information about the Python-checkins mailing list