<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-requests.git/requests/compat.py, branch render</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>Merge pull request #2412 from sigmavirus24/remove-cruft</title>
<updated>2015-01-27T18:24:25+00:00</updated>
<author>
<name>Kenneth Reitz</name>
<email>me@kennethreitz.org</email>
</author>
<published>2015-01-27T18:24:25+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-requests.git/commit/?id=383b20b02324e5c5d1970dd3ab0ba29bd991d2b2'/>
<id>383b20b02324e5c5d1970dd3ab0ba29bd991d2b2</id>
<content type='text'>
Remove entirely unnecessary and unused bits from requests.compat</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Remove entirely unnecessary and unused bits from requests.compat</pre>
</div>
</content>
</entry>
<entry>
<title>Check that a filename is a basestring instance</title>
<updated>2015-01-21T02:44:52+00:00</updated>
<author>
<name>Ian Cordasco</name>
<email>graffatcolmingov@gmail.com</email>
</author>
<published>2015-01-19T03:51:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-requests.git/commit/?id=eec44dbbb1a0ce0427bf5151aa32ad5fcd1898e5'/>
<id>eec44dbbb1a0ce0427bf5151aa32ad5fcd1898e5</id>
<content type='text'>
Instead of only checking one or another type of string-like object that
we accept, let's be able to check both. Previously, we only checked if
the filename was an instance of the native str type which on Python 2
excluded unicode filenames and bytes-like filenames on Python 3.

Fixes #2411
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Instead of only checking one or another type of string-like object that
we accept, let's be able to check both. Previously, we only checked if
the filename was an instance of the native str type which on Python 2
excluded unicode filenames and bytes-like filenames on Python 3.

Fixes #2411
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove entirely unnecessary and unused bits from requests.compat</title>
<updated>2015-01-19T03:17:11+00:00</updated>
<author>
<name>Ian Cordasco</name>
<email>graffatcolmingov@gmail.com</email>
</author>
<published>2015-01-19T03:17:11+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-requests.git/commit/?id=f37fe551bbbf6ac8d07c35c64888b4ab289c967d'/>
<id>f37fe551bbbf6ac8d07c35c64888b4ab289c967d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix a typo in a comment</title>
<updated>2014-12-15T06:37:19+00:00</updated>
<author>
<name>Ben Edelman</name>
<email>namlede@users.noreply.github.com</email>
</author>
<published>2014-12-15T06:37:19+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-requests.git/commit/?id=01b58ba04e694384119e33b05726b81757022b2e'/>
<id>01b58ba04e694384119e33b05726b81757022b2e</id>
<content type='text'>
I just fixed a minor typo: "throws" is misspelled as "thows".</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
I just fixed a minor typo: "throws" is misspelled as "thows".</pre>
</div>
</content>
</entry>
<entry>
<title>handle urllib3 api changes; closes #2045</title>
<updated>2014-07-30T03:29:21+00:00</updated>
<author>
<name>Josh Schneier</name>
<email>josh.schneier@gmail.com</email>
</author>
<published>2014-07-30T03:27:38+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-requests.git/commit/?id=47d0517d66e8cf5832768262221f0357ae134ad1'/>
<id>47d0517d66e8cf5832768262221f0357ae134ad1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>compat: handle SyntaxError when importing simplejson</title>
<updated>2014-05-25T22:56:35+00:00</updated>
<author>
<name>Martin Geisler</name>
<email>martin@geisler.net</email>
</author>
<published>2014-05-25T22:44:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-requests.git/commit/?id=3b0fcb620dd196acc20d03e259ba6fdb20b1a2c9'/>
<id>3b0fcb620dd196acc20d03e259ba6fdb20b1a2c9</id>
<content type='text'>
We officially support Python 2.6 to 3.3, but simplejson does not
support Python 3.1 or 3.2:

  https://github.com/simplejson/simplejson/issues/66

Importing simplejson on Python 3.2 results in a SyntaxError because
simplejson uses the u'...' syntax (the syntax was not supported in
Python 3.0 to 3.2).

Support for loading simplejson instead of the stdlib json module was
added by #710:

  https://github.com/kennethreitz/requests/pull/710

No mention was made of the lack of support for Python 3.2, but it was
mentioned that simplejson can be faster than the stdlib json module.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We officially support Python 2.6 to 3.3, but simplejson does not
support Python 3.1 or 3.2:

  https://github.com/simplejson/simplejson/issues/66

Importing simplejson on Python 3.2 results in a SyntaxError because
simplejson uses the u'...' syntax (the syntax was not supported in
Python 3.0 to 3.2).

Support for loading simplejson instead of the stdlib json module was
added by #710:

  https://github.com/kennethreitz/requests/pull/710

No mention was made of the lack of support for Python 3.2, but it was
mentioned that simplejson can be faster than the stdlib json module.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix all remaining references to charade</title>
<updated>2013-12-18T14:43:18+00:00</updated>
<author>
<name>Ian Cordasco</name>
<email>graffatcolmingov@gmail.com</email>
</author>
<published>2013-12-18T14:43:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-requests.git/commit/?id=9379a14cb41916ce71fd94feaa26808b7770511d'/>
<id>9379a14cb41916ce71fd94feaa26808b7770511d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Wrap IncompleteRead in ChunkedEncodingError.</title>
<updated>2013-07-28T06:42:17+00:00</updated>
<author>
<name>Cory Benfield</name>
<email>lukasaoz@gmail.com</email>
</author>
<published>2013-07-28T06:42:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-requests.git/commit/?id=79f3e69f5eecdcd2dc09b234d72305a180f149d3'/>
<id>79f3e69f5eecdcd2dc09b234d72305a180f149d3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use urllib to retrieve environment proxies.</title>
<updated>2013-06-01T01:19:34+00:00</updated>
<author>
<name>James Clarke</name>
<email>james@plexapp.com</email>
</author>
<published>2013-06-01T01:19:34+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-requests.git/commit/?id=93be6916f98f191eee9ac053994f61e99869735b'/>
<id>93be6916f98f191eee9ac053994f61e99869735b</id>
<content type='text'>
This has the added benefit of including proxies defined by the OS X System Configuration framework and in the Windows registry, rather than only checking os.environ.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This has the added benefit of including proxies defined by the OS X System Configuration framework and in the Windows registry, rather than only checking os.environ.</pre>
</div>
</content>
</entry>
<entry>
<title>it`s more pep8 now</title>
<updated>2013-01-27T01:04:12+00:00</updated>
<author>
<name>oczkers</name>
<email>oczkers@gmail.com</email>
</author>
<published>2013-01-27T01:04:12+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-requests.git/commit/?id=40a060cf579a7f0996c92eed578148e526d9416f'/>
<id>40a060cf579a7f0996c92eed578148e526d9416f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
