<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/paste-git.git/tests, branch require_six</title>
<subtitle>github.com: cdent/paste.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste-git.git/'/>
<entry>
<title>Fix paste.util.html_quote(unicode): don't encode the string to escape it</title>
<updated>2015-04-22T01:37:20+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>victor.stinner@gmail.com</email>
</author>
<published>2015-04-22T01:37:20+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste-git.git/commit/?id=71f6019052c1c38757e474ba2f5160e4d7eb3cb8'/>
<id>71f6019052c1c38757e474ba2f5160e4d7eb3cb8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Cleanup imports in test_fileapp</title>
<updated>2015-04-22T00:30:37+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>victor.stinner@gmail.com</email>
</author>
<published>2015-04-22T00:30:37+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste-git.git/commit/?id=6c4ef4b3876812e6bbbb3e4748793997067aa85c'/>
<id>6c4ef4b3876812e6bbbb3e4748793997067aa85c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix pyflakes warnings in tests</title>
<updated>2015-04-22T00:29:05+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>victor.stinner@gmail.com</email>
</author>
<published>2015-04-22T00:29:05+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste-git.git/commit/?id=e69856e73336e3477cda472647ff5ac559344968'/>
<id>e69856e73336e3477cda472647ff5ac559344968</id>
<content type='text'>
* Remove unused imports
* Remove unused variables
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Remove unused imports
* Remove unused variables
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix test_exceptions on Python 3</title>
<updated>2015-04-21T22:48:57+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>victor.stinner@gmail.com</email>
</author>
<published>2015-04-21T22:48:57+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste-git.git/commit/?id=c9a2100668259057956caeddda1bcda79f5b52bc'/>
<id>c9a2100668259057956caeddda1bcda79f5b52bc</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove doctest24</title>
<updated>2015-04-21T22:35:31+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>victor.stinner@gmail.com</email>
</author>
<published>2015-04-21T22:35:31+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste-git.git/commit/?id=982e26afb9124e4d8b9edb2e10cce57c83e7c997'/>
<id>982e26afb9124e4d8b9edb2e10cce57c83e7c997</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Update test_fileapp according to changeset b3f56e5b43e8</title>
<updated>2015-04-21T20:29:25+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>victor.stinner@gmail.com</email>
</author>
<published>2015-04-21T20:29:25+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste-git.git/commit/?id=df76700401ec2fd9028cc13b199deaae3102a3fa'/>
<id>df76700401ec2fd9028cc13b199deaae3102a3fa</id>
<content type='text'>
Now HTTP status 206 is used even if the range is the full content.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Now HTTP status 206 is used even if the range is the full content.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix fileapp on Python 3</title>
<updated>2015-04-21T22:26:01+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>victor.stinner@gmail.com</email>
</author>
<published>2015-04-21T22:26:01+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste-git.git/commit/?id=6a93b558db897ae4a7991eed09d8539b12d4b39f'/>
<id>6a93b558db897ae4a7991eed09d8539b12d4b39f</id>
<content type='text'>
* Don't compare None with int
* Add __next__() method (alias to next()).
* HTTP body must be bytes
* Don't use string.letters but an hardcoded string to not depend on the locale.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Don't compare None with int
* Add __next__() method (alias to next()).
* HTTP body must be bytes
* Don't use string.letters but an hardcoded string to not depend on the locale.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix grantip on Python 3</title>
<updated>2015-04-21T22:21:48+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>victor.stinner@gmail.com</email>
</author>
<published>2015-04-21T22:21:48+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste-git.git/commit/?id=3e91500d115b58d8b807be6c7daffa19fbd49a26'/>
<id>3e91500d115b58d8b807be6c7daffa19fbd49a26</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix test_config on Python 3</title>
<updated>2015-04-21T22:21:41+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>victor.stinner@gmail.com</email>
</author>
<published>2015-04-21T22:21:41+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste-git.git/commit/?id=519d2314eee711fbe2f118af0b753fabd91c7eb9'/>
<id>519d2314eee711fbe2f118af0b753fabd91c7eb9</id>
<content type='text'>
Reset config after each test
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Reset config after each test
</pre>
</div>
</content>
</entry>
<entry>
<title>Port test_errordocument on Python 3</title>
<updated>2015-04-21T22:21:13+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>victor.stinner@gmail.com</email>
</author>
<published>2015-04-21T22:21:13+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste-git.git/commit/?id=99957c0931938f4b7747fb34e10cb18f5e611ada'/>
<id>99957c0931938f4b7747fb34e10cb18f5e611ada</id>
<content type='text'>
On Python 3, encode body to UTF-8
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
On Python 3, encode body to UTF-8
</pre>
</div>
</content>
</entry>
</feed>
