<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-requests.git/requests, branch v2.19.0</title>
<subtitle>github.com: kennethreitz/requests.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-requests.git/'/>
<entry>
<title>v2.19.0</title>
<updated>2018-06-12T14:38:10+00:00</updated>
<author>
<name>Nate Prewitt</name>
<email>Nate.Prewitt@gmail.com</email>
</author>
<published>2018-06-12T13:38:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-requests.git/commit/?id=991e8b76b7a9d21f698b24fa0058d3d5968721bc'/>
<id>991e8b76b7a9d21f698b24fa0058d3d5968721bc</id>
<content type='text'>
* Updated HISTORY.rst.
* Moved version pin for idna to allow recent 2.7 release.
* Updated version warning for urllib3 to allow 1.23.
* Updated metadata dunders in __version__.py.
* Removed Python 2.6 trove classifier.
* Removed Python 2.6 reference from README.rst.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Updated HISTORY.rst.
* Moved version pin for idna to allow recent 2.7 release.
* Updated version warning for urllib3 to allow 1.23.
* Updated metadata dunders in __version__.py.
* Removed Python 2.6 trove classifier.
* Removed Python 2.6 reference from README.rst.
</pre>
</div>
</content>
</entry>
<entry>
<title>Separate collections from collections.abc</title>
<updated>2018-06-12T05:14:59+00:00</updated>
<author>
<name>Raymond Hettinger</name>
<email>raymond.hettinger@gmail.com</email>
</author>
<published>2018-02-05T04:15:31+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-requests.git/commit/?id=7e297ed95bdbd1018657f5d6000379ecdfa54423'/>
<id>7e297ed95bdbd1018657f5d6000379ecdfa54423</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add a public method to get the cookie policy</title>
<updated>2018-06-12T05:13:07+00:00</updated>
<author>
<name>Laurent Bachelier</name>
<email>laurent@bachelier.name</email>
</author>
<published>2018-02-14T18:20:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-requests.git/commit/?id=10915e3b0d3708a093171211d51d0eea283dbe25'/>
<id>10915e3b0d3708a093171211d51d0eea283dbe25</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Copy cookie policy when copying a CookieJar</title>
<updated>2018-06-12T05:13:07+00:00</updated>
<author>
<name>Laurent Bachelier</name>
<email>laurent@bachelier.name</email>
</author>
<published>2018-02-14T14:26:13+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-requests.git/commit/?id=3ef49272f2ff7bef67c8b53bcfba9c3a2ecfa9c7'/>
<id>3ef49272f2ff7bef67c8b53bcfba9c3a2ecfa9c7</id>
<content type='text'>
Without it, the cookie policy would get lost while making a request.
That would be invisible to the user if the default cookie policy wasn't
changed, of course.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Without it, the cookie policy would get lost while making a request.
That would be invisible to the user if the default cookie policy wasn't
changed, of course.
</pre>
</div>
</content>
</entry>
<entry>
<title>Response.content minor perf improvement</title>
<updated>2018-05-26T22:20:27+00:00</updated>
<author>
<name>Ofek Lev</name>
<email>ofekmeister@gmail.com</email>
</author>
<published>2018-05-26T22:20:27+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-requests.git/commit/?id=c1b828bc95b8ed0407511b93ee260aa1032f4f8c'/>
<id>c1b828bc95b8ed0407511b93ee260aa1032f4f8c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>The library raises NoneType error when file-pointer (fp) resolves to None.</title>
<updated>2018-05-17T20:56:17+00:00</updated>
<author>
<name>Rajiv Mayani</name>
<email>mayani@isi.edu</email>
</author>
<published>2017-05-23T17:43:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-requests.git/commit/?id=8546a15587b2a240c1d1404d3ef99365b911bf13'/>
<id>8546a15587b2a240c1d1404d3ef99365b911bf13</id>
<content type='text'>
&gt;&gt;&gt; from requests import post
&gt;&gt;&gt; r = post("https://example.com", files={"file-name": None})

However, when a param value or json field is None they are not included in the request body.

&gt;&gt;&gt; from requests import get
&gt;&gt;&gt; r = get("https://example.com", params={"file-name": None})
&gt;&gt;&gt; r.request.url

This commit makes the beahviour consistent for files.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
&gt;&gt;&gt; from requests import post
&gt;&gt;&gt; r = post("https://example.com", files={"file-name": None})

However, when a param value or json field is None they are not included in the request body.

&gt;&gt;&gt; from requests import get
&gt;&gt;&gt; r = get("https://example.com", params={"file-name": None})
&gt;&gt;&gt; r.request.url

This commit makes the beahviour consistent for files.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'master' into master</title>
<updated>2018-05-16T13:46:26+00:00</updated>
<author>
<name>Ian Stapleton Cordasco</name>
<email>graffatcolmingov@gmail.com</email>
</author>
<published>2018-05-16T13:46:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-requests.git/commit/?id=371ee7cbec537a673fc17910550471549a00775f'/>
<id>371ee7cbec537a673fc17910550471549a00775f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add a comment about lowercase env. variables precedence over uppercase</title>
<updated>2018-05-13T13:15:56+00:00</updated>
<author>
<name>Julien Prigent</name>
<email>julienprigent@gmx.fr</email>
</author>
<published>2018-04-11T22:42:22+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-requests.git/commit/?id=60a5a393d8c42bfeb83f17eca6fcd04faaa6fd49'/>
<id>60a5a393d8c42bfeb83f17eca6fcd04faaa6fd49</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>update json param's description to avoid confusion</title>
<updated>2018-04-30T14:50:23+00:00</updated>
<author>
<name>Elias Obeid</name>
<email>e.k.obeid@gmail.com</email>
</author>
<published>2018-04-26T14:02:43+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-requests.git/commit/?id=75c57985b02b98c897994e81afcf88b69b33f528'/>
<id>75c57985b02b98c897994e81afcf88b69b33f528</id>
<content type='text'>
- the Request class doesn't accept JSON, but a JSON serializable object</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- the Request class doesn't accept JSON, but a JSON serializable object</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'master' into master</title>
<updated>2018-03-05T16:07:12+00:00</updated>
<author>
<name>David Poole</name>
<email>testcluster@gmail.com</email>
</author>
<published>2018-03-05T16:07:12+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-requests.git/commit/?id=85ec7d759e1442e074b2eac59f9527e645ab8f6e'/>
<id>85ec7d759e1442e074b2eac59f9527e645ab8f6e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
