summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_urllibnet.py
Commit message (Collapse)AuthorAgeFilesLines
* Reflow long line.Jeremy Hylton2003-07-171-2/+2
|
* Whitespace normalization.Tim Peters2003-06-151-1/+1
|
* test_fileno(): Skip this test on Windows.Tim Peters2003-05-161-13/+17
|
* Fleshed out tests for urllib requiring a network connection.Brett Cannon2003-05-141-3/+123
|
* Combine the functionality of test_support.run_unittest()Walter Dörwald2003-05-011-4/+1
| | | | | | | | | | and test_support.run_classtests() into run_unittest() and use it wherever possible. Also don't use "from test.test_support import ...", but "from test import test_support" in a few spots. From SF patch #662807.
* The socket module now always uses the _socketobject wrapper class, even onSkip Montanaro2003-03-301-0/+32
platforms which have dup(2). The makefile() method is built directly on top of the socket without duplicating the file descriptor, allowing timeouts to work properly. Includes a new test case (urllibnet) which requires the network resource. Closes bug 707074.