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

This commit is contained in:
Matthias Klose 2009-06-22 13:05:52 +00:00
parent ef83ab9db5
commit ab2b7559e2
2 changed files with 5 additions and 1 deletions

View file

@ -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?
=============================================

View 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)