<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-requests.git/tests/testserver, branch 3.0-requestscore</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>white</title>
<updated>2018-03-15T10:56:20+00:00</updated>
<author>
<name>Kenneth Reitz</name>
<email>me@kennethreitz.org</email>
</author>
<published>2018-03-15T10:56:20+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-requests.git/commit/?id=8a1baaf47b5848c4dbdeda93e6ab2e3f1b8f29df'/>
<id>8a1baaf47b5848c4dbdeda93e6ab2e3f1b8f29df</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>black</title>
<updated>2018-03-14T21:28:51+00:00</updated>
<author>
<name>Kenneth Reitz</name>
<email>me@kennethreitz.org</email>
</author>
<published>2018-03-14T21:28:51+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-requests.git/commit/?id=9cea8ce09d757cb20af16c43e44033fd47c95289'/>
<id>9cea8ce09d757cb20af16c43e44033fd47c95289</id>
<content type='text'>
https://github.com/ambv/black
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://github.com/ambv/black
</pre>
</div>
</content>
</entry>
<entry>
<title>little modification  in consume_socket_content</title>
<updated>2016-10-21T08:55:58+00:00</updated>
<author>
<name>lovedboy</name>
<email>lovedboy.tk@qq.com</email>
</author>
<published>2016-10-21T08:37:46+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-requests.git/commit/?id=d58753344638992a63f4fe8e516c9f55a9a7f027'/>
<id>d58753344638992a63f4fe8e516c9f55a9a7f027</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>Allow graceful interruption of testserver.Server</title>
<updated>2016-05-17T15:45:12+00:00</updated>
<author>
<name>Brett Higgins</name>
<email>brett.higgins@gmail.com</email>
</author>
<published>2016-05-17T15:45:12+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-requests.git/commit/?id=b6d6894f539f3568597901be354a54da7606062b'/>
<id>b6d6894f539f3568597901be354a54da7606062b</id>
<content type='text'>
So that failing tests don't cause the server thread to hang
indefinitely, waiting for connections that will never come.

Rationale for suppressing error/traceback from interrupted
_accept_connection in testserver.Server:
https://gist.github.com/brettdh/b6e741227b2297f19d2118077f14dfa5

* Move server socket close to just before join

This way it handles the no-connections, no-exceptions case
as well as the exception case. If the server thread doesn't
exit by itself within 5 seconds of the context manager exit,
the accept will be interrupted.

* Address feedback

- pytest.raises rather than except:pass
- Move socket create/bind back to run()
- Timeout on accepting connections</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
So that failing tests don't cause the server thread to hang
indefinitely, waiting for connections that will never come.

Rationale for suppressing error/traceback from interrupted
_accept_connection in testserver.Server:
https://gist.github.com/brettdh/b6e741227b2297f19d2118077f14dfa5

* Move server socket close to just before join

This way it handles the no-connections, no-exceptions case
as well as the exception case. If the server thread doesn't
exit by itself within 5 seconds of the context manager exit,
the accept will be interrupted.

* Address feedback

- pytest.raises rather than except:pass
- Move socket create/bind back to run()
- Timeout on accepting connections</pre>
</div>
</content>
</entry>
<entry>
<title>Add 'all' proxy selection to select_proxy</title>
<updated>2016-05-13T19:30:38+00:00</updated>
<author>
<name>Brett Higgins</name>
<email>brhiggins@arbor.net</email>
</author>
<published>2016-05-13T19:24:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-requests.git/commit/?id=4bf88661720782670e14a0904a28ee897180b429'/>
<id>4bf88661720782670e14a0904a28ee897180b429</id>
<content type='text'>
It seems it's necessary both in pulling all_proxy from the environment
(rebuild_proxies) and deciding which proxy to use (select_proxy).

Also added new functional test.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
It seems it's necessary both in pulling all_proxy from the environment
(rebuild_proxies) and deciding which proxy to use (select_proxy).

Also added new functional test.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed indenting issues</title>
<updated>2016-04-11T18:03:23+00:00</updated>
<author>
<name>Braulio Valdivielso Martínez</name>
<email>brlvldvlsmrtnz@gmail.com</email>
</author>
<published>2016-04-11T18:03:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-requests.git/commit/?id=634b2beb39644a1aa1ef3f1f7c4f26fe0a6a9bf8'/>
<id>634b2beb39644a1aa1ef3f1f7c4f26fe0a6a9bf8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix tests in python 3</title>
<updated>2016-03-07T17:33:06+00:00</updated>
<author>
<name>Braulio Valdivielso Martínez</name>
<email>brlvldvlsmrtnz@gmail.com</email>
</author>
<published>2016-03-07T17:33:06+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-requests.git/commit/?id=b473440cc1038ae9e745141ea4084291c7f8ea6d'/>
<id>b473440cc1038ae9e745141ea4084291c7f8ea6d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Leave two lines of separation between top level definitions</title>
<updated>2016-03-05T22:11:31+00:00</updated>
<author>
<name>Braulio Valdivielso Martínez</name>
<email>brlvldvlsmrtnz@gmail.com</email>
</author>
<published>2016-03-05T22:11:31+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-requests.git/commit/?id=66c52c3ce0e273250cbb5e470ef4e0daadeac715'/>
<id>66c52c3ce0e273250cbb5e470ef4e0daadeac715</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed style issues</title>
<updated>2016-03-04T18:33:58+00:00</updated>
<author>
<name>Braulio Valdivielso Martínez</name>
<email>brlvldvlsmrtnz@gmail.com</email>
</author>
<published>2016-03-04T18:33:58+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-requests.git/commit/?id=0d1a779030c1b26f9decda889b3e140d89bdeef9'/>
<id>0d1a779030c1b26f9decda889b3e140d89bdeef9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
