<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-requests.git/requests/structures.py, branch update-security-md</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>Remove internal use of unnecessary compat shim for OrderedDict</title>
<updated>2018-12-29T17:05:33+00:00</updated>
<author>
<name>Jon Dufresne</name>
<email>jon.dufresne@gmail.com</email>
</author>
<published>2018-12-29T15:37:21+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-requests.git/commit/?id=2aab9a9a39fdfdfbd37cc8494259cb0ebb36a5e9'/>
<id>2aab9a9a39fdfdfbd37cc8494259cb0ebb36a5e9</id>
<content type='text'>
The shim is the same on both Python 2 &amp; 3. It is always
collections.OrderedDict. Avoid the indirection and import from Python
stdlib instead.

Keep requests.compat.OrderedDict for backwards compatibility. Some
packages import this.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The shim is the same on both Python 2 &amp; 3. It is always
collections.OrderedDict. Avoid the indirection and import from Python
stdlib instead.

Keep requests.compat.OrderedDict for backwards compatibility. Some
packages import this.
</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>revert 8e6e47af and c121b98c</title>
<updated>2017-05-04T05:46:59+00:00</updated>
<author>
<name>schlamar</name>
<email>marc.schlaich@gmail.com</email>
</author>
<published>2017-05-03T14:05:48+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-requests.git/commit/?id=724fd44b975c5a078a186e79417656772a3f8ecc'/>
<id>724fd44b975c5a078a186e79417656772a3f8ecc</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Update implementation of TimedCache object</title>
<updated>2017-03-04T15:03:03+00:00</updated>
<author>
<name>Ian Cordasco</name>
<email>graffatcolmingov@gmail.com</email>
</author>
<published>2017-03-04T15:03:03+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-requests.git/commit/?id=8e6e47af43d1d89a0201bd58e97c700bebbddd5e'/>
<id>8e6e47af43d1d89a0201bd58e97c700bebbddd5e</id>
<content type='text'>
There were some odd decisions made about the implementation of some of
the required methods for MuttableMapping in the TimedCache object. This
cleans those up and makes the implementation, ever so slightly, easier
to read.

See also #3885
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
There were some odd decisions made about the implementation of some of
the required methods for MuttableMapping in the TimedCache object. This
cleans those up and makes the implementation, ever so slightly, easier
to read.

See also #3885
</pre>
</div>
</content>
</entry>
<entry>
<title>wrapped proxy_bypass() with cache lookup</title>
<updated>2017-02-23T22:04:16+00:00</updated>
<author>
<name>David Fontenot</name>
<email>davidmfontenot@gmail.com</email>
</author>
<published>2017-02-22T01:57:21+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-requests.git/commit/?id=c121b98c4eb1e4ee8927995d9b9f1d6bdccd9349'/>
<id>c121b98c4eb1e4ee8927995d9b9f1d6bdccd9349</id>
<content type='text'>
Used to alleviate long gethostbyaddr calls
Made new TimedCache and decorator to wrap
a function with a cache
* Entries looked up older than a minute (default amount)
are evicted.
* When full, evicts the oldest entry
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Used to alleviate long gethostbyaddr calls
Made new TimedCache and decorator to wrap
a function with a cache
* Entries looked up older than a minute (default amount)
are evicted.
* When full, evicts the oldest entry
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #3429 from nateprewitt/docstring_cleanup</title>
<updated>2016-07-20T22:38:38+00:00</updated>
<author>
<name>Kenneth Reitz</name>
<email>me@kennethreitz.org</email>
</author>
<published>2016-07-20T22:38:38+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-requests.git/commit/?id=fb014560611f6ebb97e7deb03ad8336c3c8f2db1'/>
<id>fb014560611f6ebb97e7deb03ad8336c3c8f2db1</id>
<content type='text'>
Docstring cleanup</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Docstring cleanup</pre>
</div>
</content>
</entry>
<entry>
<title>making class and function docstrings consistent</title>
<updated>2016-07-20T17:43:47+00:00</updated>
<author>
<name>Nate Prewitt</name>
<email>Nate.Prewitt@gmail.com</email>
</author>
<published>2016-07-20T17:43:47+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-requests.git/commit/?id=b7809acb473cf084b467b0ec0a524c50bcbe225f'/>
<id>b7809acb473cf084b467b0ec0a524c50bcbe225f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>adding in pep8 fixes</title>
<updated>2016-07-20T16:30:08+00:00</updated>
<author>
<name>Nate Prewitt</name>
<email>Nate.Prewitt@gmail.com</email>
</author>
<published>2016-07-19T21:23:11+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-requests.git/commit/?id=2d4a89f5dc561dbf062ec5c85d6f6ca32a511042'/>
<id>2d4a89f5dc561dbf062ec5c85d6f6ca32a511042</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>making module docstrings and coding comments consistent</title>
<updated>2016-07-19T20:51:14+00:00</updated>
<author>
<name>Nate Prewitt</name>
<email>Nate.Prewitt@gmail.com</email>
</author>
<published>2016-07-19T20:51:14+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-requests.git/commit/?id=15a3869006fa68d7ad34bc315842f2ca5b537311'/>
<id>15a3869006fa68d7ad34bc315842f2ca5b537311</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use OrderedDict from .compat module</title>
<updated>2016-04-15T02:43:53+00:00</updated>
<author>
<name>Piotr Jurkiewicz</name>
<email>piotr.jerzy.jurkiewicz@gmail.com</email>
</author>
<published>2016-04-15T02:43:53+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-requests.git/commit/?id=c8a0fc6aa2131c9bfa7ac3903c01d522fca3d346'/>
<id>c8a0fc6aa2131c9bfa7ac3903c01d522fca3d346</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
