httplib2 icon indicating copy to clipboard operation
httplib2 copied to clipboard

The former official repository for httplib2. Now see https://github.com/httplib2.

Results 17 httplib2 issues
Sort by recently updated
recently updated
newest added

Fixes a tiny typo in Http.request docs, and -> an.

https://travis-ci.org/jayvdb/httplib2/builds/42097318 Some tests are failing because of a problem with the test server http://bitworking.org/projects/httplib2/test/303/303.cgi We can remove dependency on the bitworking server for the asis test files by using https://pypi.python.org/pypi/asis...

Fixes issue #173 Patch originally contributed Sep 6, 2011 https://code.google.com/p/httplib2/issues/detail?id=173 --- This change is [](https://reviewable.io/reviews/jcgregorio/httplib2/289)

i goes on the loop from 1 ... RETRIES, so the right comparison to do is i < RETRIES. The third change, the i == 0 can never happen, i...

This moves the block that reads the data up into the try: block. I hit this issue while testing aioamqp with pyrabbit. The sequence of events is: - send request...

Hello guys! Recently I recived some strange behavior for sending http requests using httplib2 My python script uses httplib2 and interacts with a web server which have a keep-alive timeout...

Hello, Relating to the issue discovered here jcgregorio/httplib2#300 Http lib 0.9.2 release didn't fix Jython compatibility issue. Proposing following fix : `from socket import socket` instead of `import socket` into...

The current implementation in _GetValidHostsForCert (no DNS specified, commonName in subject not honored) raises an Exception with a [ARBA](http://www.arba.gov.ar/bajadas/Fiscalizacion/Operativos/TransporteBienes/Documentacion/CertificadoArba_11102015.rar) certificate for https://cot.arba.gov.ar/: ``` CertificateHostnameMismatch: Server presented certificate that does not...

Currently, the library tries to execute a request at most `RETRIES-1` times. With the default value of `RETRIES=2`, you can get errors when making a new request after the server...