| Commit message (Expand) | Author | Age | Files | Lines |
* | #1627: httplib now ignores negative Content-Length headers. | Georg Brandl | 2008-02-24 | 1 | -0/+3 |
|
|
* | #900744: If an invalid chunked-encoding header is sent by a server, | Georg Brandl | 2008-02-24 | 1 | -1/+7 |
|
|
* | Patch #2167 from calvin: Remove unused imports | Christian Heimes | 2008-02-23 | 1 | -1/+0 |
|
|
* | Patch #1966: Break infinite loop in httplib when the servers | Martin v. Löwis | 2008-02-12 | 1 | -0/+4 |
|
|
* | Fix tpyo. | Georg Brandl | 2007-12-08 | 1 | -1/+1 |
|
|
* | Issue #1580738. When HTTPConnection reads the whole stream with read(), | Facundo Batista | 2007-10-18 | 1 | -1/+2 |
|
|
* | More work on SSL support. | Bill Janssen | 2007-09-10 | 1 | -2/+2 |
|
|
* | deprecate use of FakeSocket | Bill Janssen | 2007-08-31 | 1 | -0/+4 |
|
|
* | Don't lie in __all__ attributes when SSL is not available: only add the SSL | Thomas Wouters | 2007-08-30 | 1 | -1/+2 |
|
|
* | This contains a number of things: | Bill Janssen | 2007-08-29 | 1 | -201/+32 |
|
|
* | Bug #978833: Close https sockets by releasing the _ssl object. | Martin v. Löwis | 2007-07-27 | 1 | -0/+3 |
|
|
* | Added timeout support to HTTPSConnection, through the | Facundo Batista | 2007-05-21 | 1 | -4/+3 |
|
|
* | Some nits. | Georg Brandl | 2007-03-26 | 1 | -1/+2 |
|
|
* | Added a 'create_connect()' function to socket.py, which creates a | Facundo Batista | 2007-03-23 | 1 | -20/+3 |
|
|
* | Bug #978833: Revert r50844, as it broke _socketobject.dup. | Martin v. Löwis | 2007-03-23 | 1 | -2/+2 |
|
|
* | Whitespace normalization. | Tim Peters | 2007-01-30 | 1 | -1/+1 |
|
|
* | Patch #1065257: Support passing open files as body in | Martin v. Löwis | 2006-11-12 | 1 | -2/+24 |
|
|
* | Minor typo fixes | Andrew M. Kuchling | 2006-07-30 | 1 | -2/+2 |
|
|
* | Bug #978833: Really close underlying socket in _socketobject.close. | Martin v. Löwis | 2006-07-26 | 1 | -2/+2 |
|
|
* | RFE #1472176: In httplib, don't encode the netloc and hostname with "idna" if... | Georg Brandl | 2006-05-03 | 1 | -4/+13 |
|
|
* | Move "httpresponses" dict from urllib2 to httplib where it belongs. | Georg Brandl | 2006-02-17 | 1 | -1/+50 |
|
|
* | bug [ 1296004 ] MemoryError in httplib | Georg Brandl | 2005-09-29 | 1 | -4/+7 |
|
|
* | bug [ 1155638 ] self.length shield exception in httplib | Georg Brandl | 2005-06-26 | 1 | -0/+1 |
|
|
* | Fix for SF bug 988120 via patch 1061941. | Jeremy Hylton | 2004-11-07 | 1 | -2/+4 |
|
|
* | SF bug #1046855: httplib index out of range | Raymond Hettinger | 2004-10-14 | 1 | -1/+1 |
|
|
* | Patch #1025790: Add status code constants to httplib. | Martin v. Löwis | 2004-09-18 | 1 | -3/+62 |
|
|
* | Remove tabs. | Brett Cannon | 2004-09-15 | 1 | -2/+2 |
|
|
* | Strip square brackets from IPv6 address. | Martin v. Löwis | 2004-09-14 | 1 | -0/+2 |
|
|
* | missed the obvious test case and corresponding fix | Skip Montanaro | 2004-09-14 | 1 | -1/+2 |
|
|
* | Search from the end of the host/port combination to find the colon which | Skip Montanaro | 2004-09-14 | 1 | -1/+1 |
|
|
* | Patch #800236: add HTTPResponse.getheaders(). | Martin v. Löwis | 2004-08-18 | 1 | -0/+6 |
|
|
* | SF bug 874842 and patch 997626: httplib bugs | Jeremy Hylton | 2004-08-07 | 1 | -10/+20 |
|
|
* | Fix a bug that robotparser starves memory when the server responses | Hye-Shik Chang | 2004-06-05 | 1 | -1/+9 |
|
|
* | Replace str.find()!=1 with the more readable "in" operator. | Raymond Hettinger | 2004-05-04 | 1 | -2/+2 |
|
|
* | Whitespace normalization. | Tim Peters | 2004-01-18 | 1 | -2/+2 |
|
|
* | Patch #831747: Add skip_accept_encoding parameter to putrequest. | Martin v. Löwis | 2003-11-19 | 1 | -3/+7 |
|
|
* | fixed obvious bug in _send_header as per SF bug #831271 | Alex Martelli | 2003-11-09 | 1 | -2/+1 |
|
|
* | Patch #817854: Add missing operations for SSLFile. Fixes #792101. | Martin v. Löwis | 2003-10-27 | 1 | -0/+25 |
|
|
* | Fix sf bug 666219: assertion error in httplib. | Jeremy Hylton | 2003-06-29 | 1 | -0/+4 |
|
|
* | Deal with a couple XXX comments which asked questions. | Greg Stein | 2003-06-24 | 1 | -4/+2 |
|
|
* | Always unwrap _socketobj in socket.ssl. Revert httplib.py 1.25. | Martin v. Löwis | 2003-06-14 | 1 | -4/+1 |
|
|
* | Whitespace normalization. | Tim Peters | 2003-05-12 | 1 | -1/+1 |
|
|
* | SF bug 622042: Don't expect response body from HEAD request. | Jeremy Hylton | 2003-05-05 | 1 | -4/+11 |
|
|
* | Implement IDNA (Internationalized Domain Names in Applications). | Martin v. Löwis | 2003-04-18 | 1 | -3/+3 |
|
|
* | Reverted the previous change to read() and readline(). | Raymond Hettinger | 2003-03-06 | 1 | -18/+28 |
|
|
* | Module review: | Raymond Hettinger | 2003-02-26 | 1 | -40/+30 |
|
|
* | typo | Skip Montanaro | 2003-02-25 | 1 | -1/+1 |
|
|
* | Whitespace normalization. | Tim Peters | 2002-11-24 | 1 | -1/+1 |
|
|
* | Remove some test code. | Jeremy Hylton | 2002-11-13 | 1 | -33/+0 |
|
|
* | Fix SF bug #637789: Handle Proxy-Connection header. | Jeremy Hylton | 2002-11-13 | 1 | -15/+25 |
|
|