Commit 5bbbf1d9 authored by Georg Brandl's avatar Georg Brandl

Merged revisions 85536 via svnmerge from

svn+ssh://svn.python.org/python/branches/py3k

........
  r85536 | georg.brandl | 2010-10-15 18:26:08 +0200 (Fr, 15 Okt 2010) | 1 line

  #9054: fix crash when using pyexpat with a system expat lib version 2.0.1.
........
parent 98316118
...@@ -568,6 +568,9 @@ Library ...@@ -568,6 +568,9 @@ Library
Extension Modules Extension Modules
----------------- -----------------
- Issue #9054: Fix a crash occurring when using the pyexpat module
with expat version 2.0.1.
- Issue #10003: Allow handling of SIGBREAK on Windows. Fixes a regression - Issue #10003: Allow handling of SIGBREAK on Windows. Fixes a regression
introduced by issue #9324. introduced by issue #9324.
...@@ -669,6 +672,7 @@ Build ...@@ -669,6 +672,7 @@ Build
Tests Tests
----- -----
- Issue #9628: fix runtests.sh -x option so more than one test can be excluded. - Issue #9628: fix runtests.sh -x option so more than one test can be excluded.
- Issue #9894: Do not hardcode ENOENT in test_subprocess. - Issue #9894: Do not hardcode ENOENT in test_subprocess.
......
...@@ -397,6 +397,9 @@ call_character_handler(xmlparseobject *self, const XML_Char *buffer, int len) ...@@ -397,6 +397,9 @@ call_character_handler(xmlparseobject *self, const XML_Char *buffer, int len)
PyObject *args; PyObject *args;
PyObject *temp; PyObject *temp;
if (!have_handler(self, CharacterData))
return -1;
args = PyTuple_New(1); args = PyTuple_New(1);
if (args == NULL) if (args == NULL)
return -1; return -1;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment