summaryrefslogtreecommitdiffstats
path: root/Lib/httplib.py
Commit message (Expand)AuthorAgeFilesLines
* Move "httpresponses" dict from urllib2 to httplib where it belongs.Georg Brandl2006-02-171-1/+50
* bug [ 1296004 ] MemoryError in httplibGeorg Brandl2005-09-291-4/+7
* bug [ 1155638 ] self.length shield exception in httplibGeorg Brandl2005-06-261-0/+1
* Fix for SF bug 988120 via patch 1061941.Jeremy Hylton2004-11-071-2/+4
* SF bug #1046855: httplib index out of rangeRaymond Hettinger2004-10-141-1/+1
* Patch #1025790: Add status code constants to httplib.Martin v. Löwis2004-09-181-3/+62
* Remove tabs.Brett Cannon2004-09-151-2/+2
* Strip square brackets from IPv6 address.Martin v. Löwis2004-09-141-0/+2
* missed the obvious test case and corresponding fixSkip Montanaro2004-09-141-1/+2
* Search from the end of the host/port combination to find the colon whichSkip Montanaro2004-09-141-1/+1
* Patch #800236: add HTTPResponse.getheaders().Martin v. Löwis2004-08-181-0/+6
* SF bug 874842 and patch 997626: httplib bugsJeremy Hylton2004-08-071-10/+20
* Fix a bug that robotparser starves memory when the server responsesHye-Shik Chang2004-06-051-1/+9
* Replace str.find()!=1 with the more readable "in" operator.Raymond Hettinger2004-05-041-2/+2
* Whitespace normalization.Tim Peters2004-01-181-2/+2
* Patch #831747: Add skip_accept_encoding parameter to putrequest.Martin v. Löwis2003-11-191-3/+7
* fixed obvious bug in _send_header as per SF bug #831271Alex Martelli2003-11-091-2/+1
* Patch #817854: Add missing operations for SSLFile. Fixes #792101.Martin v. Löwis2003-10-271-0/+25
* Fix sf bug 666219: assertion error in httplib.Jeremy Hylton2003-06-291-0/+4
* Deal with a couple XXX comments which asked questions.Greg Stein2003-06-241-4/+2
* Always unwrap _socketobj in socket.ssl. Revert httplib.py 1.25.Martin v. Löwis2003-06-141-4/+1
* Whitespace normalization.Tim Peters2003-05-121-1/+1
* SF bug 622042: Don't expect response body from HEAD request.Jeremy Hylton2003-05-051-4/+11
* Implement IDNA (Internationalized Domain Names in Applications).Martin v. Löwis2003-04-181-3/+3
* Reverted the previous change to read() and readline().Raymond Hettinger2003-03-061-18/+28
* Module review:Raymond Hettinger2003-02-261-40/+30
* typoSkip Montanaro2003-02-251-1/+1
* Whitespace normalization.Tim Peters2002-11-241-1/+1
* Remove some test code.Jeremy Hylton2002-11-131-33/+0
* Fix SF bug #637789: Handle Proxy-Connection header.Jeremy Hylton2002-11-131-15/+25
* Whitespace normalization.Tim Peters2002-11-091-2/+2
* Move code for reading chunked responses in helper function,Jeremy Hylton2002-09-031-45/+52
* SF bug [ 600488 ] Robustness tweak to httplib.pyJeremy Hylton2002-09-031-3/+1
* Whitespace normalization.Tim Peters2002-08-081-1/+1
* typoSkip Montanaro2002-07-251-1/+1
* Fix typos and such caught by the pycheckerbot.Jeremy Hylton2002-07-161-3/+3
* Whitespace normalization.Tim Peters2002-07-161-6/+6
* Send HTTP requests with a single send() call instead of many.Jeremy Hylton2002-07-161-15/+26
* Change _begin() back to begin().Jeremy Hylton2002-07-121-3/+2
* Fix for SF bug 579107.Jeremy Hylton2002-07-091-36/+88
* Fix for SF bug #432621: httplib: multiple Set-Cookie headersJeremy Hylton2002-07-071-2/+108
* Fix SF bug #575360Jeremy Hylton2002-07-061-0/+6
* Handle HTTP/0.9 responses.Jeremy Hylton2002-07-061-19/+132
* Convert raise to call exception class. Add whitespace.Jeremy Hylton2002-07-021-1/+1
* Simplify HTTPSConnection constructor.Jeremy Hylton2002-06-281-21/+7
* Fixes for two separate HTTP/1.1 bugs: 100 responses and HTTPS connections.Jeremy Hylton2002-06-281-32/+102
* SF 563203. Replaced 'has_key()' with 'in'.Raymond Hettinger2002-06-011-1/+1
* Forward port of patch # 500311: Work around for buggy https servers.Martin v. Löwis2002-04-201-1/+2
* oops - export InvalidURL in __all__Skip Montanaro2002-03-241-1/+1
* add InvalidURL exception - raised if port is given but empty or non-numericSkip Montanaro2002-03-241-1/+7