summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_httplib.py
Commit message (Collapse)AuthorAgeFilesLines
* Fix SF bug 764095: Don't use network in test_httplib.Jeremy Hylton2003-07-081-14/+33
|
* SF bug 622042: Don't expect response body from HEAD request.Jeremy Hylton2003-05-051-0/+13
| | | | Bug fix candidate.
* Fix for SF bug 661340: test_httplib fails on the mac.Jeremy Hylton2003-01-231-41/+64
| | | | The test no longer produces output with \r\n in it.
* Complete the absolute import patch for the test suite. All relativeBarry Warsaw2002-07-301-1/+1
| | | | | | | | imports of test modules now import from the test package. Other related oddities are also fixed (like DeprecationWarning filters that weren't specifying the full import part, etc.). Also did a general code cleanup to remove all "from test.test_support import *"'s. Other from...import *'s weren't changed.
* Whitespace normalization.Tim Peters2002-07-161-1/+0
|
* Change _begin() back to begin().Jeremy Hylton2002-07-121-3/+3
| | | | Client code could create responses explicitly.
* Fix for SF bug #432621: httplib: multiple Set-Cookie headersJeremy Hylton2002-07-071-2/+20
| | | | | | | | | | If multiple header fields with the same name occur, they are combined according to the rules in RFC 2616 sec 4.2: Appending each subsequent field-value to the first, each separated by a comma. The order in which header fields with the same field-name are received is significant to the interpretation of the combined field value.
* Track change of begin() to _begin().Jeremy Hylton2002-06-281-2/+2
|
* Use attributes appropriatelyNeal Norwitz2002-04-011-1/+1
|
* add test of InvalidURLSkip Montanaro2002-03-241-0/+10
|
* test_support should be imported directly, not via test.test_support.Tim Peters2001-09-251-1/+1
|
* Add test for SF bug #405427Jeremy Hylton2001-04-131-0/+31