<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/webob.git/webob, 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>Raise a better exception for status code failures</title>
<updated>2015-07-30T15:52:55+00:00</updated>
<author>
<name>Bert JW Regeer</name>
<email>bertjw@regeer.org</email>
</author>
<published>2015-07-30T15:52:55+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/webob.git/commit/?id=1d82b53e7a8d444ef487546e30e72f7d35960330'/>
<id>1d82b53e7a8d444ef487546e30e72f7d35960330</id>
<content type='text'>
Rather than having int() raise a ValueError that doesn't explain what is
going on, re-raise with a new description.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Rather than having int() raise a ValueError that doesn't explain what is
going on, re-raise with a new description.
</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>Rebased and missed part of a patchset</title>
<updated>2015-04-14T20:54:54+00:00</updated>
<author>
<name>Bert JW Regeer</name>
<email>bertjw@regeer.org</email>
</author>
<published>2015-04-14T20:54:54+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/webob.git/commit/?id=1beed4626d332c695908b684119ffdbce1dbfd71'/>
<id>1beed4626d332c695908b684119ffdbce1dbfd71</id>
<content type='text'>
Rebased PR #191, but apparently missed part of the patch. This fixes
that.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Rebased PR #191, but apparently missed part of the patch. This fixes
that.
</pre>
</div>
</content>
</entry>
<entry>
<title>int() might fail with ValueError or TypeError.</title>
<updated>2015-04-14T20:48:52+00:00</updated>
<author>
<name>Tim Pederick</name>
<email>pederick@gmail.com</email>
</author>
<published>2015-04-07T16:20:45+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/webob.git/commit/?id=f11cb9d7fbe706fc0a24a8b8274154063248b561'/>
<id>f11cb9d7fbe706fc0a24a8b8274154063248b561</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Enabled duck-typing for setting a quasi-integer response status.</title>
<updated>2015-04-14T20:48:52+00:00</updated>
<author>
<name>Tim Pederick</name>
<email>pederick@gmail.com</email>
</author>
<published>2015-04-07T12:18:33+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/webob.git/commit/?id=ffc1200046822430cb552b3c1085fdcbd99b9c8b'/>
<id>ffc1200046822430cb552b3c1085fdcbd99b9c8b</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>
</feed>
