<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/webob.git/tests, branch docs/cleanup</title>
<subtitle>github.com: Pylons/webob.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/webob.git/'/>
<entry>
<title>Ensure that webob.exc.status_map is deterministic.</title>
<updated>2015-07-31T16:29:05+00:00</updated>
<author>
<name>Ryan Petrello</name>
<email>lists@ryanpetrello.com</email>
</author>
<published>2015-07-31T16:29:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/webob.git/commit/?id=f6c74901117eb505160b653081b64826aab51333'/>
<id>f6c74901117eb505160b653081b64826aab51333</id>
<content type='text'>
Because multiple base classes share and inherit the same status code, the
values of `webob.exc.status_map` are *not* deterministic at import time.  For
example, for any given execution of Python, `webob.exc.status_map[500]` might
be equal to any of the following:

    * WSGIHTTPException
    * HTTPServerError
    * HTTPError
    * HTTPInternalServerError
    * HTTPRedirection
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Because multiple base classes share and inherit the same status code, the
values of `webob.exc.status_map` are *not* deterministic at import time.  For
example, for any given execution of Python, `webob.exc.status_map[500]` might
be equal to any of the following:

    * WSGIHTTPException
    * HTTPServerError
    * HTTPError
    * HTTPInternalServerError
    * HTTPRedirection
</pre>
</div>
</content>
</entry>
<entry>
<title>Un-break backwards compatibility on set_cookie</title>
<updated>2015-07-30T15:18:55+00:00</updated>
<author>
<name>Bert JW Regeer</name>
<email>bertjw@regeer.org</email>
</author>
<published>2015-07-30T15:18:55+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/webob.git/commit/?id=f178647455c85e197549845b2b71ae19377eaf74'/>
<id>f178647455c85e197549845b2b71ae19377eaf74</id>
<content type='text'>
This was accidentally missed, the rename from "key" to "name" should
have a deprecation warning, and it should have been mentioned in the
news.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This was accidentally missed, the rename from "key" to "name" should
have a deprecation warning, and it should have been mentioned in the
news.
</pre>
</div>
</content>
</entry>
<entry>
<title>Be good, add a test</title>
<updated>2015-04-14T21:07:36+00:00</updated>
<author>
<name>Bert JW Regeer</name>
<email>bertjw@regeer.org</email>
</author>
<published>2015-04-14T21:07:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/webob.git/commit/?id=a790d1ccc5c609ec4122e0806e24de9e3d3aa9a5'/>
<id>a790d1ccc5c609ec4122e0806e24de9e3d3aa9a5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed test for exception that no longer occurs.</title>
<updated>2015-04-14T20:48:52+00:00</updated>
<author>
<name>Tim Pederick</name>
<email>pederick@gmail.com</email>
</author>
<published>2015-04-07T15:08:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/webob.git/commit/?id=9d1724cc8d0836a25aa36dc1c8f4fabe88dd40aa'/>
<id>9d1724cc8d0836a25aa36dc1c8f4fabe88dd40aa</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'pr/162': Fix MultiDict's extend()</title>
<updated>2015-04-14T20:43:18+00:00</updated>
<author>
<name>Bert JW Regeer</name>
<email>bertjw@regeer.org</email>
</author>
<published>2015-04-14T20:43:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/webob.git/commit/?id=bb4831f184e09759c3c247fb8b479c04015249fc'/>
<id>bb4831f184e09759c3c247fb8b479c04015249fc</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>WSGIHTTPException sets a default status code</title>
<updated>2015-04-14T20:15:29+00:00</updated>
<author>
<name>Bert JW Regeer</name>
<email>bertjw@regeer.org</email>
</author>
<published>2015-04-14T20:15:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/webob.git/commit/?id=107b079d04a0ffd19ce93e1b23e8b9922bd0bc0f'/>
<id>107b079d04a0ffd19ce93e1b23e8b9922bd0bc0f</id>
<content type='text'>
Make response.status be more strict about what you give it. i.e. if you
pass in a string yourself, it should have a valid integer code.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Make response.status be more strict about what you give it. i.e. if you
pass in a string yourself, it should have a valid integer code.
</pre>
</div>
</content>
</entry>
<entry>
<title>Revert "Merge branch 'pr/100': Delete body if response code is 204,205 or 304"</title>
<updated>2015-04-14T16:27:38+00:00</updated>
<author>
<name>Bert JW Regeer</name>
<email>bertjw@regeer.org</email>
</author>
<published>2015-04-14T16:26:57+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/webob.git/commit/?id=55ea77df08ae968a0cbbf53c8499e6902d0fd226'/>
<id>55ea77df08ae968a0cbbf53c8499e6902d0fd226</id>
<content type='text'>
This reverts commit 88b21f731127333e75d955a705d17e65a6ef6995, reversing
changes made to 68ec029717c751fb080fdab79922c31ba1a8e5e0.

Looking at this a little more in depth, this change doesn't actually
solve the problem.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This reverts commit 88b21f731127333e75d955a705d17e65a6ef6995, reversing
changes made to 68ec029717c751fb080fdab79922c31ba1a8e5e0.

Looking at this a little more in depth, this change doesn't actually
solve the problem.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'pr/100': Delete body if response code is 204,205 or 304</title>
<updated>2015-04-14T16:14:32+00:00</updated>
<author>
<name>Bert JW Regeer</name>
<email>bertjw@regeer.org</email>
</author>
<published>2015-04-14T16:14:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/webob.git/commit/?id=88b21f731127333e75d955a705d17e65a6ef6995'/>
<id>88b21f731127333e75d955a705d17e65a6ef6995</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'pr/146': Use \r\n line endings in Response.__str__</title>
<updated>2015-04-14T16:09:09+00:00</updated>
<author>
<name>Bert JW Regeer</name>
<email>bertjw@regeer.org</email>
</author>
<published>2015-04-14T16:09:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/webob.git/commit/?id=68ec029717c751fb080fdab79922c31ba1a8e5e0'/>
<id>68ec029717c751fb080fdab79922c31ba1a8e5e0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'pr/192'</title>
<updated>2015-04-13T15:27:14+00:00</updated>
<author>
<name>Bert JW Regeer</name>
<email>bertjw@regeer.org</email>
</author>
<published>2015-04-13T15:27:14+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/webob.git/commit/?id=759cc3fec8ab29924282262157e37ad61b49971a'/>
<id>759cc3fec8ab29924282262157e37ad61b49971a</id>
<content type='text'>
Request.POST was destroying the original request body, thereby making
the following a destructive sequence:

r1 = req.body
r2 = req.POST
r3 = req.body

r1 would not be qual to r3, with this patchset that is once again true.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Request.POST was destroying the original request body, thereby making
the following a destructive sequence:

r1 = req.body
r2 = req.POST
r3 = req.body

r1 would not be qual to r3, with this patchset that is once again true.
</pre>
</div>
</content>
</entry>
</feed>
