| Commit message (Expand) | Author | Age | Files | Lines |
* | 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 |
|
|
* | Whitespace normalization. | Tim Peters | 2002-11-09 | 1 | -2/+2 |
|
|
* | Move code for reading chunked responses in helper function, | Jeremy Hylton | 2002-09-03 | 1 | -45/+52 |
|
|
* | SF bug [ 600488 ] Robustness tweak to httplib.py | Jeremy Hylton | 2002-09-03 | 1 | -3/+1 |
|
|
* | Whitespace normalization. | Tim Peters | 2002-08-08 | 1 | -1/+1 |
|
|
* | typo | Skip Montanaro | 2002-07-25 | 1 | -1/+1 |
|
|
* | Fix typos and such caught by the pycheckerbot. | Jeremy Hylton | 2002-07-16 | 1 | -3/+3 |
|
|
* | Whitespace normalization. | Tim Peters | 2002-07-16 | 1 | -6/+6 |
|
|
* | Send HTTP requests with a single send() call instead of many. | Jeremy Hylton | 2002-07-16 | 1 | -15/+26 |
|
|
* | Change _begin() back to begin(). | Jeremy Hylton | 2002-07-12 | 1 | -3/+2 |
|
|
* | Fix for SF bug 579107. | Jeremy Hylton | 2002-07-09 | 1 | -36/+88 |
|
|
* | Fix for SF bug #432621: httplib: multiple Set-Cookie headers | Jeremy Hylton | 2002-07-07 | 1 | -2/+108 |
|
|
* | Fix SF bug #575360 | Jeremy Hylton | 2002-07-06 | 1 | -0/+6 |
|
|
* | Handle HTTP/0.9 responses. | Jeremy Hylton | 2002-07-06 | 1 | -19/+132 |
|
|
* | Convert raise to call exception class. Add whitespace. | Jeremy Hylton | 2002-07-02 | 1 | -1/+1 |
|
|
* | Simplify HTTPSConnection constructor. | Jeremy Hylton | 2002-06-28 | 1 | -21/+7 |
|
|
* | Fixes for two separate HTTP/1.1 bugs: 100 responses and HTTPS connections. | Jeremy Hylton | 2002-06-28 | 1 | -32/+102 |
|
|
* | SF 563203. Replaced 'has_key()' with 'in'. | Raymond Hettinger | 2002-06-01 | 1 | -1/+1 |
|
|
* | Forward port of patch # 500311: Work around for buggy https servers. | Martin v. Löwis | 2002-04-20 | 1 | -1/+2 |
|
|
* | oops - export InvalidURL in __all__ | Skip Montanaro | 2002-03-24 | 1 | -1/+1 |
|
|
* | add InvalidURL exception - raised if port is given but empty or non-numeric | Skip Montanaro | 2002-03-24 | 1 | -1/+7 |
|
|
* | [Bug #531616] Make HTTPS work again by adding a sendall method to the | Andrew M. Kuchling | 2002-03-18 | 1 | -0/+3 |
|
|