Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Whitespace normalization. | Tim Peters | 2003-06-15 | 1 | -1/+1 | |
| | ||||||
* | test_fileno(): Skip this test on Windows. | Tim Peters | 2003-05-16 | 1 | -13/+17 | |
| | ||||||
* | Fleshed out tests for urllib requiring a network connection. | Brett Cannon | 2003-05-14 | 1 | -3/+123 | |
| | ||||||
* | Combine the functionality of test_support.run_unittest() | Walter Dörwald | 2003-05-01 | 1 | -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 on | Skip Montanaro | 2003-03-30 | 1 | -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. |