<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/paste.git/paste/wsgilib.py, branch fix-has_key</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>Port wsgilib to Python 3</title>
<updated>2015-04-21T16:01:47+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>victor.stinner@gmail.com</email>
</author>
<published>2015-04-21T16:01:47+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste.git/commit/?id=c0d6933ba0b5775cc86c937e0990ce8d4104bfc2'/>
<id>c0d6933ba0b5775cc86c937e0990ce8d4104bfc2</id>
<content type='text'>
* Add __next__() methods to iterable classes: just add __next__ alias to next()
* Replace it.next() with next(it)
* Replace unicode with six.text_type
* Replace str with six.binary_type
* HTTP body must be bytes: use b''.join(output) instead of ''.join(output)
* Fix dump_environ(): convert output to bytes on Python 3
* Fix raw_interactive() on Python 3: use BytesIO() not StringIO() for
  stdin/stdout/stderr
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Add __next__() methods to iterable classes: just add __next__ alias to next()
* Replace it.next() with next(it)
* Replace unicode with six.text_type
* Replace str with six.binary_type
* HTTP body must be bytes: use b''.join(output) instead of ''.join(output)
* Fix dump_environ(): convert output to bytes on Python 3
* Fix raw_interactive() on Python 3: use BytesIO() not StringIO() for
  stdin/stdout/stderr
</pre>
</div>
</content>
</entry>
<entry>
<title>Strip trailing spaces</title>
<updated>2015-04-21T13:26:47+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>victor.stinner@gmail.com</email>
</author>
<published>2015-04-21T13:26:47+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste.git/commit/?id=04ecd5542849191457ccfc3e42a39452db47825a'/>
<id>04ecd5542849191457ccfc3e42a39452db47825a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Python 3: fix more submodules</title>
<updated>2014-03-19T11:51:48+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>victor.stinner@gmail.com</email>
</author>
<published>2014-03-19T11:51:48+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste.git/commit/?id=4c177fce89fee925f0f4fbfde00ce2e1252562c0'/>
<id>4c177fce89fee925f0f4fbfde00ce2e1252562c0</id>
<content type='text'>
* print syntax
* replace "except Exception, exc:" with "except Exception as exc:"
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* print syntax
* replace "except Exception, exc:" with "except Exception as exc:"
</pre>
</div>
</content>
</entry>
<entry>
<title>Python 3: fix sort</title>
<updated>2014-03-18T11:37:35+00:00</updated>
<author>
<name>Cyril Roelandt</name>
<email>cyril.roelandt@enovance.com</email>
</author>
<published>2014-03-18T11:37:35+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste.git/commit/?id=9bab66a51910d0eb171c55d35ab3737ac0eeb0aa'/>
<id>9bab66a51910d0eb171c55d35ab3737ac0eeb0aa</id>
<content type='text'>
* Use key parameter of sort()
* Convert dict.items() to list, needed by Python 3
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Use key parameter of sort()
* Convert dict.items() to list, needed by Python 3
</pre>
</div>
</content>
</entry>
<entry>
<title>Python 3: use six.reraise() to re-raise an exception with the traceback</title>
<updated>2014-03-18T11:37:15+00:00</updated>
<author>
<name>Cyril Roelandt</name>
<email>cyril.roelandt@enovance.com</email>
</author>
<published>2014-03-18T11:37:15+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste.git/commit/?id=6916751bf7d7107f5dce709c02ae8e60c46e1176'/>
<id>6916751bf7d7107f5dce709c02ae8e60c46e1176</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Python 3: Replace "except Exception, exc" with "except Exception as exc:"</title>
<updated>2014-03-18T11:47:35+00:00</updated>
<author>
<name>Cyril Roelandt</name>
<email>cyril.roelandt@enovance.com</email>
</author>
<published>2014-03-18T11:47:35+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste.git/commit/?id=fbd07d8a7cf88daf5d821601578d2f7bc1c92928'/>
<id>fbd07d8a7cf88daf5d821601578d2f7bc1c92928</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</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>small docstring formatting fixes</title>
<updated>2008-04-27T06:26:53+00:00</updated>
<author>
<name>ianb</name>
<email>devnull@localhost</email>
</author>
<published>2008-04-27T06:26:53+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste.git/commit/?id=ad6924deae625ce803937bf8511b4985464f55ee'/>
<id>ad6924deae625ce803937bf8511b4985464f55ee</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>* Fixed bug in paste lint where PATH_INFO would become unicode.</title>
<updated>2008-01-13T20:31:34+00:00</updated>
<author>
<name>bbangert</name>
<email>devnull@localhost</email>
</author>
<published>2008-01-13T20:31:34+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste.git/commit/?id=8a93f497bfa2fbd48f3c740a5920d3f6d423f52d'/>
<id>8a93f497bfa2fbd48f3c740a5920d3f6d423f52d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix intercept_output docstring example</title>
<updated>2008-01-11T23:41:56+00:00</updated>
<author>
<name>ianb</name>
<email>devnull@localhost</email>
</author>
<published>2008-01-11T23:41:56+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste.git/commit/?id=12a2e2e906091edb172fbe2996988eb1ce199737'/>
<id>12a2e2e906091edb172fbe2996988eb1ce199737</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
