<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/cpython-git.git/Lib/test/test_xml_etree.py, branch benjamin-eval-loop-edit</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>bpo-29209: Remove old-deprecated features in ElementTree. (GH-6769)</title>
<updated>2018-07-24T09:03:34+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2018-07-24T09:03:34+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=02ec92fa7b1dddc23d479ee0b87dc283793505a8'/>
<id>02ec92fa7b1dddc23d479ee0b87dc283793505a8</id>
<content type='text'>
Also make getchildren() and getiterator() emitting
a DeprecationWarning instead of PendingDeprecationWarning.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Also make getchildren() and getiterator() emitting
a DeprecationWarning instead of PendingDeprecationWarning.
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-33761: Fix a file leak in test_iterparse in test_xml_etree. (GH-7358)</title>
<updated>2018-06-03T17:56:52+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2018-06-03T17:56:52+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=13f51d9eec569e08475390e2a8f49f4afed1ea06'/>
<id>13f51d9eec569e08475390e2a8f49f4afed1ea06</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-32297: Few misspellings found in Python source code comments. (#4803)</title>
<updated>2017-12-14T11:04:53+00:00</updated>
<author>
<name>Mike</name>
<email>mehanig@gmail.com</email>
</author>
<published>2017-12-14T11:04:53+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=53f7a7c2814fbfd8a29200926601a32fa48bacb3'/>
<id>53f7a7c2814fbfd8a29200926601a32fa48bacb3</id>
<content type='text'>
* Fix multiple typos in code comments

* Add spacing in comments (test_logging.py, test_math.py)

* Fix spaces at the beginning of comments in test_logging.py
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Fix multiple typos in code comments

* Add spacing in comments (test_logging.py, test_math.py)

* Fix spaces at the beginning of comments in test_logging.py
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-31648: Improve ElementPath (#3835)</title>
<updated>2017-09-30T13:35:21+00:00</updated>
<author>
<name>scoder</name>
<email>stefan_ml@behnel.de</email>
</author>
<published>2017-09-30T13:35:21+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=101a5e84acbab9d880e150195f23185dfb5449a9'/>
<id>101a5e84acbab9d880e150195f23185dfb5449a9</id>
<content type='text'>
* Allow whitespace inside of ElementPath predicates.
* Add ElementPath predicate support for text comparison of the current node, like "[.='text']".
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Allow whitespace inside of ElementPath predicates.
* Add ElementPath predicate support for text comparison of the current node, like "[.='text']".
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-31170: Write unit test for Expat 2.2.4 UTF-8 bug (#3570)</title>
<updated>2017-09-25T08:27:34+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>victor.stinner@gmail.com</email>
</author>
<published>2017-09-25T08:27:34+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=e6d9fcbb8d0c325e57df08ae8781aafedb71eca2'/>
<id>e6d9fcbb8d0c325e57df08ae8781aafedb71eca2</id>
<content type='text'>
Non-regression tests for the Expat 2.2.3 UTF-8 decoder bug.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Non-regression tests for the Expat 2.2.3 UTF-8 decoder bug.</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-31455: Fix an assertion failure in ElementTree.XMLParser(). (#3545)</title>
<updated>2017-09-14T20:00:03+00:00</updated>
<author>
<name>scoder</name>
<email>stefan_ml@behnel.de</email>
</author>
<published>2017-09-14T20:00:03+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=c8d8e15bfc24abeeaaf3d8be9073276b0c011cdf'/>
<id>c8d8e15bfc24abeeaaf3d8be9073276b0c011cdf</id>
<content type='text'>
* Avoid calling "PyObject_GetAttrString()" (and potentially executing user code) with a live exception set.

* Ignore only AttributeError on attribute lookups in ElementTree.XMLParser() and propagate all other exceptions.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Avoid calling "PyObject_GetAttrString()" (and potentially executing user code) with a live exception set.

* Ignore only AttributeError on attribute lookups in ElementTree.XMLParser() and propagate all other exceptions.
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-30442: Skips refcount test in test_xml_etree under coverage (#1767)</title>
<updated>2017-05-24T18:46:43+00:00</updated>
<author>
<name>Kushal Das</name>
<email>kushaldas@gmail.com</email>
</author>
<published>2017-05-24T18:46:43+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=1de4705d00168afa8c5b6741af02e21fc609af58'/>
<id>1de4705d00168afa8c5b6741af02e21fc609af58</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-29204: Emit warnings for already deprecated ElementTree features. (#773)</title>
<updated>2017-03-30T15:12:06+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2017-03-30T15:12:06+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=762ec97ea68a1126b8855996c61fa8239dc9fff7'/>
<id>762ec97ea68a1126b8855996c61fa8239dc9fff7</id>
<content type='text'>
Element.getiterator() and the html parameter of XMLParser() were
deprecated only in the documentation (since Python 3.2 and 3.4 correspondintly).
Now using them emits a deprecation warning.

* Don’t need check_warnings any more.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Element.getiterator() and the html parameter of XMLParser() were
deprecated only in the documentation (since Python 3.2 and 3.4 correspondintly).
Now using them emits a deprecation warning.

* Don’t need check_warnings any more.
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-27863: Fixed multiple crashes in ElementTree. (#765)</title>
<updated>2017-03-30T06:47:31+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2017-03-30T06:47:31+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=576def096ec7b64814e038f03290031f172886c3'/>
<id>576def096ec7b64814e038f03290031f172886c3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #28314: Added tests for xml.etree.ElementTree.Element.getiterator().</title>
<updated>2016-10-25T07:37:55+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2016-10-25T07:37:55+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=c3adf1e09b2cd981e4f3e07ef93c19c9513f4846'/>
<id>c3adf1e09b2cd981e4f3e07ef93c19c9513f4846</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
