Kenneth Reitz
22701d149a
Merge pull request #1500 from gavrie/master
...
Update urllib3 to d89d508
2.0
2013-07-31 18:23:43 -07:00
Kenneth Reitz
d5fd3d3331
Merge pull request #1487 from dpursehouse/rewrite-test_mixed_case_scheme_acceptable
...
Rewrite test cases to remove dependency on httpbin.org and example.com
2013-07-31 18:23:34 -07:00
Kenneth Reitz
d5a8816926
Merge pull request #1498 from Lukasa/incompleteread
...
Wrap IncompleteRead in ChunkedEncodingError.
2013-07-31 18:23:14 -07:00
Kenneth Reitz
6b13ecdc85
Merge pull request #1501 from sigmavirus24/remove_setting_of_hooks
...
Fix duplication of efforts caught by @dofelw
2013-07-31 18:22:58 -07:00
Kenneth Reitz
7eb9a9298e
Merge pull request #1506 from Lukasa/mockrequest
...
Provide 'host' parameter to MockRequest.
2013-07-31 18:22:02 -07:00
Kenneth Reitz
3e6e68baa1
Merge pull request #1507 from buzztabapp/prepared-session-requests
...
Allow preparing of Requests from Session settings without sending.
2013-07-31 18:21:28 -07:00
Robert Estelle
0ab7a52f7c
Merge settings when creating PreparedRequest, don't copy Request.
2013-07-31 13:42:02 -07:00
Robert Estelle
0eccb547a2
Add Session.prepare_request test case.
2013-07-30 23:02:13 -07:00
Robert Estelle
d4385f6fc8
Add Request.copy() test case.
2013-07-30 23:01:56 -07:00
Robert Estelle
ee90f0af60
Shallow copy of Request fields in Request.copy()
...
This prevents e.g. modifying the headers of a copied request from
affecting the headers of its source and vice versa. Copying is used with
the intent to mutuate, so allowing this kind of mutation of fields makes
sense.
Is a deep copy better?
2013-07-30 22:59:53 -07:00
Robert Estelle
9edba838b3
Skip unneccessary Request.copy in Session.request
2013-07-30 22:59:11 -07:00
Robert Estelle
b5c136152f
Prepare requests with session settings separately from sending.
2013-07-30 21:39:36 -07:00
Cory Benfield
6ef3710970
Provide 'host' parameter to MockRequest.
2013-07-30 18:21:37 +01:00
Ian Cordasco
37786613e0
Fix duplication of efforts caught by @dofelw
2013-07-29 08:09:07 -05:00
Gavrie Philipson
ea2b639d31
Update urllib3 to d89d508
2013-07-29 11:29:41 +03:00
Cory Benfield
79f3e69f5e
Wrap IncompleteRead in ChunkedEncodingError.
2013-07-28 07:42:17 +01:00
Cory Benfield
9473f15909
Merge pull request #1494 from Lukasa/close
...
Document the Response.close() method.
2013-07-27 23:04:34 -07:00
Kenneth Reitz
77bd9c4a9d
Merge pull request #1476 from sigmavirus24/add_copy_to_prepared_requests
...
[2.0] Add copy method to PreparedRequest objects
2013-07-26 18:16:00 -07:00
Cory Benfield
f401287afb
Document the Response.close() method.
2013-07-25 19:10:42 +01:00
Cory Benfield
3becc47366
Comment markups, courtesy of @sigmavirus24
2013-07-24 16:03:24 +01:00
Kenneth Reitz
7d3d074e66
Merge pull request #1490 from Lukasa/cookiedocs
...
Better cookie docs on sessions.
2013-07-24 06:12:10 -07:00
Cory Benfield
f40a1d6a8a
Better cookie docs on sessions.
2013-07-24 13:25:59 +01:00
David Pursehouse
82c9aa912e
Check the response URL in test_uppercase_scheme_redirect
...
Update the test to check that the URL in the response is the
one that we expect, i.e. the one it was supposed to redirect to.
2013-07-24 17:37:35 +09:00
David Pursehouse
56b5f02551
Rewrite test_uppercase_scheme_redirect to use local httpbin
...
Instead of redirecting to hard-coded 'example.com', use the URL
defined in `HTTPBIN_URL` with the path set to the 'html' endpoint.
2013-07-24 17:18:16 +09:00
David Pursehouse
c4f16c351c
Remove redundant test case test_uppercase_scheme
...
This test verifies that an upper case scheme ('HTTP') works correctly,
but this is already tested in `test_mixed_case_scheme_acceptable`.
2013-07-24 16:58:09 +09:00
David Pursehouse
012cc33d44
Rewrite test_mixed_case_scheme_acceptable to work with local httpbin
...
Instead of using hard-coded urls to httpbin.org, use the url defined
in `HTTPBIN_URL` replacing the scheme as necessary to test the mixed
cases.
Refs #1485
2013-07-24 16:36:10 +09:00
David Pursehouse
415fb53cb4
Remove redundant session in test_mixed_case_scheme_acceptable
2013-07-24 12:15:46 +09:00
Kenneth Reitz
b65b8c5ed3
Merge pull request #1486 from sigmavirus24/use_urljoin
...
Use urlparse.urljointo construct httpbin url
2013-07-23 09:03:05 -07:00
Ian Cordasco
c0cb698191
Derp. Use compat
2013-07-23 10:48:45 -05:00
Ian Cordasco
d2176cf052
Use urlparse.urljointo construct httpbin url
2013-07-23 10:24:30 -05:00
Kenneth Reitz
f71bff1226
Merge pull request #1482 from dpursehouse/fix-testcases-with-proxy
...
Fix test cases that fail when running behind a proxy
2013-07-23 05:23:35 -07:00
Kenneth Reitz
47f5a0db64
Merge pull request #1483 from dpursehouse/httpbin-url-without-trailing-slash
...
Test cases fail when `HTTPBIN_URL` does not have trailing slash
2013-07-23 05:23:11 -07:00
David Pursehouse
9e771aa79c
Fix test cases that fail when running behind a proxy
...
When sending a request via `Session.send()` the proxies must be
explicitly given with the `proxies` argument. This is not done
in the test cases, which means that they fail when run on a system
that is behind a proxy.
Update test cases to make sure the proxies are set in the sessions.
2013-07-23 16:55:27 +09:00
David Pursehouse
29db7b7216
Test cases fail when HTTPBIN_URL does not have trailing slash
...
Test cases can be run against a local httpbin server defined by
the `HTTPBIN_URL` environment variable, but it causes tests to
fail if the given URL does not end with a slash.
Ensure that the URL always ends with a slash.
2013-07-23 15:29:36 +09:00
Kenneth Reitz
66de6b528d
Merge pull request #1479 from dpursehouse/fix-warnings
...
Fix a few warnings flagged by PyDev
2013-07-22 01:31:16 -07:00
David Pursehouse
4f64938ff0
Fix a few warnings flagged by PyDev
...
- Unused import of urlparse
- Unnecessary definition of variable
- Incorrect indentation
2013-07-22 17:14:45 +09:00
Kenneth Reitz
e5597dfcce
Merge pull request #1478 from dpursehouse/add-me-to-authors
...
Add myself to the authors list
2013-07-22 00:09:35 -07:00
David Pursehouse
787c1e8c6e
Add myself to the authors list
2013-07-22 15:19:10 +09:00
Cory Benfield
ec6584f2d1
Merge pull request #1477 from dpursehouse/other-auth-basic-example
...
Add a simple example of custom authentication in the documentation
2013-07-21 23:04:31 -07:00
David Pursehouse
62f0df4434
Add a simple example of custom authentication in the documentation
...
Refs #1471
2013-07-22 09:14:33 +09:00
David Pursehouse
5cdcf58b3b
Wrap long lines in the authentication documentation
2013-07-22 09:08:47 +09:00
Ian Cordasco
b84547d786
Add copy method to PreparedRequest objects
2013-07-20 17:08:35 -04:00
Kenneth Reitz
d83919a6f7
Merge pull request #1474 from Kwpolska/docfix
...
Some tiny fixes to the documentation
2013-07-20 05:15:06 -07:00
Kwpolska
2ef782b8e6
further treatment
...
Signed-off-by: Kwpolska <kwpolska@gmail.com >
2013-07-20 13:54:33 +02:00
Kwpolska
b738c97ec3
session object should be uppercase
...
Signed-off-by: Kwpolska <kwpolska@gmail.com >
2013-07-20 13:39:50 +02:00
Kwpolska
022c370bcd
fixed underline
...
Signed-off-by: Kwpolska <kwpolska@gmail.com >
2013-07-20 13:31:37 +02:00
Kwpolska
587385bfe0
Grammar fixes and such
...
Signed-off-by: Kwpolska <kwpolska@gmail.com >
2013-07-20 12:56:25 +02:00
Kwpolska
ca033b83fe
Some cosmetic updates to the docs
...
Signed-off-by: Kwpolska <kwpolska@gmail.com >
2013-07-20 12:12:57 +02:00
Cory Benfield
949a29c34f
Merge pull request #1470 from Lukasa/carset
...
Remove charset from JSON types: not valid.
2013-07-19 06:45:56 -07:00
Cory Benfield
be884341f4
Merge pull request #1465 from dpursehouse/doc-netrc-authentication
...
Improve documentation of netrc authentication
2013-07-19 06:45:17 -07:00