<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-lxml.git/src/lxml/tests/test_objectify.py, branch lxml-4.4</title>
<subtitle>github.com: lxml/lxml.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-lxml.git/'/>
<entry>
<title>Implement "__index__()" special method for integer elements in lxml.objectify.</title>
<updated>2019-03-08T08:45:35+00:00</updated>
<author>
<name>Stefan Behnel</name>
<email>stefan_ml@behnel.de</email>
</author>
<published>2019-03-08T08:45:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-lxml.git/commit/?id=fd81ebb9269e5955eca8d4e9668b1a1daf9e00c0'/>
<id>fd81ebb9269e5955eca8d4e9668b1a1daf9e00c0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add some tests that were found missing by coverage analysis.</title>
<updated>2019-03-08T08:23:27+00:00</updated>
<author>
<name>Stefan Behnel</name>
<email>stefan_ml@behnel.de</email>
</author>
<published>2019-03-08T08:23:27+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-lxml.git/commit/?id=8612d6610b036a26d468bad1fdc97c463e5c8ced'/>
<id>8612d6610b036a26d468bad1fdc97c463e5c8ced</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove redundant parentheses</title>
<updated>2018-08-25T18:14:49+00:00</updated>
<author>
<name>Hugo</name>
<email>hugovk@users.noreply.github.com</email>
</author>
<published>2018-08-25T18:14:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-lxml.git/commit/?id=5674dd2c1e29b98026350ab27163a2b06187be46'/>
<id>5674dd2c1e29b98026350ab27163a2b06187be46</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove redundant code for Python &lt;= 2.6</title>
<updated>2018-08-25T17:53:59+00:00</updated>
<author>
<name>Hugo</name>
<email>hugovk@users.noreply.github.com</email>
</author>
<published>2018-08-25T17:53:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-lxml.git/commit/?id=beaa4eb8904b9209d75d98059b5b92b26fdfebe3'/>
<id>beaa4eb8904b9209d75d98059b5b92b26fdfebe3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix losing float precision for lxml.objectify FloatElement.</title>
<updated>2016-04-08T07:11:18+00:00</updated>
<author>
<name>Holger Joukl</name>
<email>holger.joukl@gmx.de</email>
</author>
<published>2016-04-08T07:11:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-lxml.git/commit/?id=e70558389119316f9733711a515d247fc8aa0347'/>
<id>e70558389119316f9733711a515d247fc8aa0347</id>
<content type='text'>
Use repr() instead of str()/unicode() as 'stringification' function in the
FloatElement type registration.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Use repr() instead of str()/unicode() as 'stringification' function in the
FloatElement type registration.
</pre>
</div>
</content>
</entry>
<entry>
<title>prevent namespaced tags from being matched by the child lookup in lxml.objectify when neither parent nor requested tag are namespaced</title>
<updated>2012-12-18T22:40:46+00:00</updated>
<author>
<name>Stefan Behnel</name>
<email>stefan_ml@behnel.de</email>
</author>
<published>2012-12-18T22:40:46+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-lxml.git/commit/?id=c0858cd3ea4a9d1bef6418a45f9841e3f1154641'/>
<id>c0858cd3ea4a9d1bef6418a45f9841e3f1154641</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>replace usages of assertNotEquals() by assertNotEqual() to fix Py3 deprecation warning</title>
<updated>2012-11-29T21:56:59+00:00</updated>
<author>
<name>Stefan Behnel</name>
<email>stefan_ml@behnel.de</email>
</author>
<published>2012-11-29T21:56:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-lxml.git/commit/?id=4602efb66874e8451a125e9328807aa18a03363b'/>
<id>4602efb66874e8451a125e9328807aa18a03363b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>replace test usages of assert_() by assertTrue() to fix Py3 deprecation warning</title>
<updated>2012-11-29T21:55:39+00:00</updated>
<author>
<name>Stefan Behnel</name>
<email>stefan_ml@behnel.de</email>
</author>
<published>2012-11-29T21:55:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-lxml.git/commit/?id=415743debc3a776ee8954ff03fc87c25f8ce9219'/>
<id>415743debc3a776ee8954ff03fc87c25f8ce9219</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>replace usages of assertEquals() by assertEqual() to fix Py3 deprecation warning</title>
<updated>2012-11-29T21:52:01+00:00</updated>
<author>
<name>Stefan Behnel</name>
<email>stefan_ml@behnel.de</email>
</author>
<published>2012-11-29T21:52:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-lxml.git/commit/?id=31f3ddfc483f10c13f59a0f7dc2a15de7cf19640'/>
<id>31f3ddfc483f10c13f59a0f7dc2a15de7cf19640</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>make sure the E-Factory feature of the ElementBase constructor can always safely set .text/.tail, also when it's immutable</title>
<updated>2012-02-10T20:55:06+00:00</updated>
<author>
<name>Stefan Behnel</name>
<email>stefan_ml@behnel.de</email>
</author>
<published>2012-02-10T20:55:06+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-lxml.git/commit/?id=f1959a6a9866598e3ab9ec464f51a5b11e5075c9'/>
<id>f1959a6a9866598e3ab9ec464f51a5b11e5075c9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
