<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/paste.git/tests, branch require_six</title>
<subtitle>bitbucket.org: Obsolete (use python-packages/paste-git)
</subtitle>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/paste.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://trove.baserock.org/cgit/delta/python-packages/paste.git/commit/?id=b19f4f27189a29d3a1c4cf036ae51d35db83ea5a'/>
<id>b19f4f27189a29d3a1c4cf036ae51d35db83ea5a</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://trove.baserock.org/cgit/delta/python-packages/paste.git/commit/?id=b9ceb0a57e2c48f95e94693da5f3f4b86fbc3bff'/>
<id>b9ceb0a57e2c48f95e94693da5f3f4b86fbc3bff</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://trove.baserock.org/cgit/delta/python-packages/paste.git/commit/?id=cc86cbfe9424cb74d3dcc3ed5e8f8203df2f8206'/>
<id>cc86cbfe9424cb74d3dcc3ed5e8f8203df2f8206</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://trove.baserock.org/cgit/delta/python-packages/paste.git/commit/?id=9be8c17d018d28f064bf933c2c5b2fdce06f18db'/>
<id>9be8c17d018d28f064bf933c2c5b2fdce06f18db</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://trove.baserock.org/cgit/delta/python-packages/paste.git/commit/?id=61cc154316299d8e372722085baf110eb3a4833b'/>
<id>61cc154316299d8e372722085baf110eb3a4833b</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://trove.baserock.org/cgit/delta/python-packages/paste.git/commit/?id=73fad9249f2d54fa678081e55adf2c12b25fad6a'/>
<id>73fad9249f2d54fa678081e55adf2c12b25fad6a</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://trove.baserock.org/cgit/delta/python-packages/paste.git/commit/?id=565341b5faeacc912900bb244afc956cbf4a0a2a'/>
<id>565341b5faeacc912900bb244afc956cbf4a0a2a</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://trove.baserock.org/cgit/delta/python-packages/paste.git/commit/?id=82f13b6240a5a0e92f68291d90bef7e75d82a3ee'/>
<id>82f13b6240a5a0e92f68291d90bef7e75d82a3ee</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://trove.baserock.org/cgit/delta/python-packages/paste.git/commit/?id=1dd31fde1a4edc7fd2f66a738125231ba5c176ae'/>
<id>1dd31fde1a4edc7fd2f66a738125231ba5c176ae</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://trove.baserock.org/cgit/delta/python-packages/paste.git/commit/?id=8d28bef1dc52d1488d5a3cfded02d19aa2fe11fe'/>
<id>8d28bef1dc52d1488d5a3cfded02d19aa2fe11fe</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>
