<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/paste.git/paste/fixture.py, branch eliminate_cgi_parse_qsl</title>
<subtitle>bitbucket.org: Obsolete (use python-packages/paste-git)
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste.git/'/>
<entry>
<title>Replace cgi.parse_qsl w/ six.moves.urllib.parse.parse_sql</title>
<updated>2015-04-30T23:42:17+00:00</updated>
<author>
<name>Marc Abramowitz</name>
<email>marc@marc-abramowitz.com</email>
</author>
<published>2015-04-30T23:42:17+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste.git/commit/?id=fe795268815ff738d4bc5925f55704d97652dd49'/>
<id>fe795268815ff738d4bc5925f55704d97652dd49</id>
<content type='text'>
because `cgi.parse_qsl` is deprecated, according to
https://docs.python.org/2/library/cgi.html#cgi.parse_qsl
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
because `cgi.parse_qsl` is deprecated, according to
https://docs.python.org/2/library/cgi.html#cgi.parse_qsl
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix Python 3 issue in paste/fixture.py</title>
<updated>2015-04-30T22:27:33+00:00</updated>
<author>
<name>Marc Abramowitz</name>
<email>marc@marc-abramowitz.com</email>
</author>
<published>2015-04-30T22:27:33+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste.git/commit/?id=2434b4e6314663dbba066cfb184d78ad735f2e76'/>
<id>2434b4e6314663dbba066cfb184d78ad735f2e76</id>
<content type='text'>
by wrapping `map` with `list`.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
by wrapping `map` with `list`.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix fixture on Python 3</title>
<updated>2015-04-21T22:47:05+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>victor.stinner@gmail.com</email>
</author>
<published>2015-04-21T22:47:05+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste.git/commit/?id=ec3f269c91df1cacdfffea178167cee8d530da32'/>
<id>ec3f269c91df1cacdfffea178167cee8d530da32</id>
<content type='text'>
* wsgi.input must be a binary file, not a text file
* Fix fixture.TestApp.__str__() on Python 3: decode body from UTF-8
  (with xmlcharrefreplace).
* Fix fixture.TestResponse.goto() on Python 3: regex must use bytes,
  not Unicode.
* Fix TestApp._check_status() on Python 3

  - Decode body from UTF-8 (with xmlcharrefreplace) to format the error message.
  - Fix TestApp.encode_multipart() on Python 3: HTTP body must be bytes: encode
    lines to utf8 and use byte string literals.
  - Fix TestApp.post() on Python 3: default params must be bytes
  - Fix TestResponse.__repr__() on Python 3
  - Fix TestApp on Python 3: encode params values to UTF-8
  - Port TestApp._gen_request() to Python 3
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* wsgi.input must be a binary file, not a text file
* Fix fixture.TestApp.__str__() on Python 3: decode body from UTF-8
  (with xmlcharrefreplace).
* Fix fixture.TestResponse.goto() on Python 3: regex must use bytes,
  not Unicode.
* Fix TestApp._check_status() on Python 3

  - Decode body from UTF-8 (with xmlcharrefreplace) to format the error message.
  - Fix TestApp.encode_multipart() on Python 3: HTTP body must be bytes: encode
    lines to utf8 and use byte string literals.
  - Fix TestApp.post() on Python 3: default params must be bytes
  - Fix TestResponse.__repr__() on Python 3
  - Fix TestApp on Python 3: encode params values to UTF-8
  - Port TestApp._gen_request() to Python 3
</pre>
</div>
</content>
</entry>
<entry>
<title>Python 3: Use six types for strings</title>
<updated>2014-03-18T11:47:02+00:00</updated>
<author>
<name>Cyril Roelandt</name>
<email>cyril.roelandt@enovance.com</email>
</author>
<published>2014-03-18T11:47:02+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste.git/commit/?id=4262b41da195cb959abf4a5a06ce34a6dec2c4a3'/>
<id>4262b41da195cb959abf4a5a06ce34a6dec2c4a3</id>
<content type='text'>
* Replace (str, unicode) with (six.binary_type, six.text_type)
* Replace basestring with (six.binary_type, six.text_type)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Replace (str, unicode) with (six.binary_type, six.text_type)
* Replace basestring with (six.binary_type, six.text_type)
</pre>
</div>
</content>
</entry>
<entry>
<title>Python 3: add parenthesis to print() to support Python 2 and Python 3</title>
<updated>2014-03-18T11:49:27+00:00</updated>
<author>
<name>Cyril Roelandt</name>
<email>cyril.roelandt@enovance.com</email>
</author>
<published>2014-03-18T11:49:27+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste.git/commit/?id=9789a96ca9aab44bd71fdcfc5c0bed1ef7cf0838'/>
<id>9789a96ca9aab44bd71fdcfc5c0bed1ef7cf0838</id>
<content type='text'>
Use also "from __future__ import print_function".
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Use also "from __future__ import print_function".
</pre>
</div>
</content>
</entry>
<entry>
<title>Python 3: don't use tuples in function prototype</title>
<updated>2014-03-18T11:22:50+00:00</updated>
<author>
<name>Cyril Roelandt</name>
<email>cyril.roelandt@enovance.com</email>
</author>
<published>2014-03-18T11:22:50+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste.git/commit/?id=4b3635c01d650058227767d2253e32e902cbbed1'/>
<id>4b3635c01d650058227767d2253e32e902cbbed1</id>
<content type='text'>
Unpack explicitly in the body of the function
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Unpack explicitly in the body of the function
</pre>
</div>
</content>
</entry>
<entry>
<title>Python 3: use new names of standard library modules</title>
<updated>2014-03-18T11:49:12+00:00</updated>
<author>
<name>Cyril Roelandt</name>
<email>cyril.roelandt@enovance.com</email>
</author>
<published>2014-03-18T11:49:12+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste.git/commit/?id=674ae7718bc06a8b8c8b658075bf82c8198fb632'/>
<id>674ae7718bc06a8b8c8b658075bf82c8198fb632</id>
<content type='text'>
Use "try/except ImportError" to try Python 2 and Python 3 names.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Use "try/except ImportError" to try Python 2 and Python 3 names.
</pre>
</div>
</content>
</entry>
<entry>
<title>note return value of form.submit</title>
<updated>2010-09-02T08:28:09+00:00</updated>
<author>
<name>Ian Bicking</name>
<email>ianb@colorstudy.com</email>
</author>
<published>2010-09-02T08:28:09+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste.git/commit/?id=b5a97e752ab1875c2b56e3591f0fce3abc9e31d0'/>
<id>b5a97e752ab1875c2b56e3591f0fce3abc9e31d0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed mustcontain(no=...) (#245)</title>
<updated>2008-11-16T00:34:49+00:00</updated>
<author>
<name>ianb</name>
<email>devnull@localhost</email>
</author>
<published>2008-11-16T00:34:49+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste.git/commit/?id=fd10a55ca670f141800b22a63a79ffb2f41689ce'/>
<id>fd10a55ca670f141800b22a63a79ffb2f41689ce</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>missing import</title>
<updated>2008-06-12T23:03:26+00:00</updated>
<author>
<name>pjenvey</name>
<email>devnull@localhost</email>
</author>
<published>2008-06-12T23:03:26+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste.git/commit/?id=61c7364a62d316c15f925f4949a6442de4320859'/>
<id>61c7364a62d316c15f925f4949a6442de4320859</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
