<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/cpython-git.git/Modules/_elementtree.c, branch 3.4</title>
<subtitle>github.com: python/cpython.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/'/>
<entry>
<title>[3.4] bpo-34623: Use XML_SetHashSalt in _elementtree (#9953)</title>
<updated>2019-02-25T21:02:17+00:00</updated>
<author>
<name>stratakis</name>
<email>cstratak@redhat.com</email>
</author>
<published>2019-02-25T21:02:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=d16eaf36795da48b930b80b20d3805bc27820712'/>
<id>d16eaf36795da48b930b80b20d3805bc27820712</id>
<content type='text'>
* bpo-34623: Use XML_SetHashSalt in _elementtree (GH-9146)

The C accelerated _elementtree module now initializes hash randomization
salt from _Py_HashSecret instead of libexpat's default CPRNG.

Signed-off-by: Christian Heimes &lt;christian@python.org&gt;

https://bugs.python.org/issue34623
(cherry picked from commit cb5778f00ce48631c7140f33ba242496aaf7102b)

Co-authored-by: Christian Heimes &lt;christian@python.org&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* bpo-34623: Use XML_SetHashSalt in _elementtree (GH-9146)

The C accelerated _elementtree module now initializes hash randomization
salt from _Py_HashSecret instead of libexpat's default CPRNG.

Signed-off-by: Christian Heimes &lt;christian@python.org&gt;

https://bugs.python.org/issue34623
(cherry picked from commit cb5778f00ce48631c7140f33ba242496aaf7102b)

Co-authored-by: Christian Heimes &lt;christian@python.org&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>Issue25814: Propagate all errors from custom XML parser handlers</title>
<updated>2015-12-06T21:51:44+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2015-12-06T21:51:44+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=7efaf95934a78bd4d5dcc778426e376f9d46f56d'/>
<id>7efaf95934a78bd4d5dcc778426e376f9d46f56d</id>
<content type='text'>
in ElementTree.iterparse().
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
in ElementTree.iterparse().
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #19687: Fixed possible integer overflows in ElementTree.</title>
<updated>2015-11-25T18:12:37+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2015-11-25T18:12:37+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=097a664f5770a635e24cbdd4b050b1ec802ed058'/>
<id>097a664f5770a635e24cbdd4b050b1ec802ed058</id>
<content type='text'>
Based on patch by Christian Heimes.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Based on patch by Christian Heimes.
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #25691: Fixed crash on deleting ElementTree.Element attributes.</title>
<updated>2015-11-23T06:42:25+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2015-11-23T06:42:25+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=b6aa5375d5a2f81370338357506034befe62aa31'/>
<id>b6aa5375d5a2f81370338357506034befe62aa31</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #19687: Fixed memory leak on failed Element slice assignment.</title>
<updated>2015-11-22T10:18:38+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2015-11-22T10:18:38+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=04d759b1e4cb5b2d9ed13555e952565ccd3ce3bd'/>
<id>04d759b1e4cb5b2d9ed13555e952565ccd3ce3bd</id>
<content type='text'>
Added new tests for Element slice assignments.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Added new tests for Element slice assignments.
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #19176: Fixed doctype() related bugs in C implementation of ElementTree.</title>
<updated>2015-06-29T19:35:58+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2015-06-29T19:35:58+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=05744ac6e0948cbd6a50fc03a239a5402abceb14'/>
<id>05744ac6e0948cbd6a50fc03a239a5402abceb14</id>
<content type='text'>
A deprecation warning no longer issued by XMLParser subclass with default
doctype() method.  Direct call of doctype() now issues a warning.  Parser's
doctype() now is not called if target's doctype() is called.  Based on patch
by Martin Panter.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
A deprecation warning no longer issued by XMLParser subclass with default
doctype() method.  Direct call of doctype() now issues a warning.  Parser's
doctype() now is not called if target's doctype() is called.  Based on patch
by Martin Panter.
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #24091: Fixed various crashes in corner cases in C implementation of</title>
<updated>2015-05-18T15:29:33+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2015-05-18T15:29:33+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=5bf3120e244575189cb7090a0fb6026036f1f979'/>
<id>5bf3120e244575189cb7090a0fb6026036f1f979</id>
<content type='text'>
ElementTree.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
ElementTree.
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #19815: Fix segfault when parsing empty namespace declaration.</title>
<updated>2013-11-28T14:35:40+00:00</updated>
<author>
<name>Eli Bendersky</name>
<email>eliben@gmail.com</email>
</author>
<published>2013-11-28T14:35:40+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=8148164353b935ce7a1716d82eca461e0ca6ed8f'/>
<id>8148164353b935ce7a1716d82eca461e0ca6ed8f</id>
<content type='text'>
Based on patches by Christian Heimes and Vajrasky Kok
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Based on patches by Christian Heimes and Vajrasky Kok
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix indentation from previous commit</title>
<updated>2013-11-28T14:33:21+00:00</updated>
<author>
<name>Eli Bendersky</name>
<email>eliben@gmail.com</email>
</author>
<published>2013-11-28T14:33:21+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=4b79518f83fa6c4dadd69326276032d74c8e3df7'/>
<id>4b79518f83fa6c4dadd69326276032d74c8e3df7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #19815: Fix segfault when parsing empty namespace declaration.</title>
<updated>2013-11-28T14:31:58+00:00</updated>
<author>
<name>Eli Bendersky</name>
<email>eliben@gmail.com</email>
</author>
<published>2013-11-28T14:31:58+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=5dd40e555b625c592b8391df84b36215204db4df'/>
<id>5dd40e555b625c592b8391df84b36215204db4df</id>
<content type='text'>
Based on patches by Christian Heimes and Vajrasky Kok
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Based on patches by Christian Heimes and Vajrasky Kok
</pre>
</div>
</content>
</entry>
</feed>
