| Commit message (Expand) | Author | Age | Files | Lines |
* | Being bsd-based, darwin/macosx has the same limitation w.r.t. the "echo" | Skip Montanaro | 2004-08-16 | 1 | -1/+1 |
|
|
* | Whitespace normalization. | Tim Peters | 2004-08-09 | 1 | -1/+1 |
|
|
* | Patch #1003700: Add socketpair function to socket module. | Dave Cole | 2004-08-09 | 1 | -0/+43 |
|
|
* | FreeBSD's services file contains an additional echo service entry, with | Andrew MacIntyre | 2004-07-12 | 1 | -1/+7 |
|
|
* | testGetServBy(): Use services that should be available both on *nix and | Barry Warsaw | 2004-07-06 | 1 | -1/+1 |
|
|
* | Added socket.getservbyport(), and make its second argument and that of | Barry Warsaw | 2004-06-28 | 1 | -10/+22 |
|
|
* | Add weakref support to sockets and re pattern objects. | Raymond Hettinger | 2004-05-31 | 1 | -0/+14 |
|
|
* | SF bug 924242: socket._fileobject._getclosed() returns wrong value | Tim Peters | 2004-03-28 | 1 | -0/+8 |
|
|
* | Fix indentation error in testGetServByName and rewrite loop to avoid clumsy | Skip Montanaro | 2004-02-10 | 1 | -5/+2 |
|
|
* | SF patch #760257: add socket.timeout exception | Raymond Hettinger | 2003-06-29 | 1 | -2/+57 |
|
|
* | Whitespace normalization. | Tim Peters | 2003-05-12 | 1 | -3/+3 |
|
|
* | Combine the functionality of test_support.run_unittest() | Walter Dörwald | 2003-05-01 | 1 | -10/+11 |
|
|
* | Skip testing inet_ntop() an inet_pton() if they aren't defined. | Guido van Rossum | 2003-04-25 | 1 | -0/+8 |
|
|
* | Patch by Jp Calderone: | Guido van Rossum | 2003-04-25 | 1 | -0/+59 |
|
|
* | Also skip testHostnameRes() if gethostbyaddr() raises an exception. | Guido van Rossum | 2002-12-26 | 1 | -1/+5 |
|
|
* | Skip testHostnameRes() if gethostbyname() raises an exception. | Guido van Rossum | 2002-12-26 | 1 | -1/+5 |
|
|
* | Since it tests both ntohl and ntohs, the test should not be called | Guido van Rossum | 2002-09-16 | 1 | -1/+1 |
|
|
* | Maybe this fixes test_socket on 64-bit Linux. | Guido van Rossum | 2002-09-14 | 1 | -9/+13 |
|
|
* | Skip UDP testing for MacPython (for now), it hangs. This may be due to | Jack Jansen | 2002-09-06 | 1 | -1/+3 |
|
|
* | Don't use hex constants representing negative numbers. | Guido van Rossum | 2002-08-12 | 1 | -1/+1 |
|
|
* | testSendAll(): loop until all data is read; this was necessary at | Guido van Rossum | 2002-08-08 | 1 | -3/+3 |
|
|
* | Whitespace normalization. | Tim Peters | 2002-08-08 | 1 | -1/+1 |
|
|
* | Replace docstrings on test functions witrh comments -- then unittest | Guido van Rossum | 2002-08-08 | 1 | -31/+50 |
|
|
* | Tighten the unbuffered readline test to distinguish between the two lines. | Guido van Rossum | 2002-08-07 | 1 | -4/+4 |
|
|
* | Oops. I accidentally commented out some tests. | Guido van Rossum | 2002-08-07 | 1 | -4/+4 |
|
|
* | "Unbuffered" mode of class _fileobject wasn't actually unbuffered, | Guido van Rossum | 2002-08-07 | 1 | -6/+35 |
|
|
* | testGetServByName shouldn't check for getservbyname - the socket module | Skip Montanaro | 2002-08-02 | 1 | -18/+17 |
|
|
* | modify testGetServByName so it tries a few different protocols. In this day | Skip Montanaro | 2002-08-02 | 1 | -5/+17 |
|
|
* | Enable test_socket again, if only to prevent mistakes like Jeremy | Guido van Rossum | 2002-07-31 | 1 | -2/+2 |
|
|
* | Repair testNtoH for large long arguments. | Jeremy Hylton | 2002-07-31 | 1 | -9/+8 |
|
|
* | Extended socket.htonl and ntohl to accept longs. | Jeremy Hylton | 2002-07-25 | 1 | -0/+11 |
|
|
* | Remove test that was none too picky about whether attributes exist. | Jeremy Hylton | 2002-07-25 | 1 | -41/+0 |
|
|
* | Get rid of relative imports in all unittests. Now anything that | Barry Warsaw | 2002-07-23 | 1 | -1/+1 |
|
|
* | Remove a few lines that aren't used and cause problems on platforms | Guido van Rossum | 2002-07-19 | 1 | -6/+0 |
|
|
* | Add test for previous core dump when sending on closed socket with | Guido van Rossum | 2002-07-19 | 1 | -1/+10 |
|
|
* | Add default timeout functionality. This adds setdefaulttimeout() and | Guido van Rossum | 2002-07-18 | 1 | -0/+30 |
|
|
* | I get failures half of the time that I run this, so I'll disable | Guido van Rossum | 2002-06-20 | 1 | -2/+2 |
|
|
* | Michael fixed the race conditions and removed the sleeps. | Guido van Rossum | 2002-06-18 | 1 | -9/+55 |
|
|
* | Temporarily disable the timeout and socket tests. | Guido van Rossum | 2002-06-13 | 1 | -12/+12 |
|
|
* | Comment out testHostnameRes() -- it depends on a correctly working | Guido van Rossum | 2002-06-13 | 1 | -10/+10 |
|
|
* | Fix non-blocking connect() for Windows. Refactored the code | Guido van Rossum | 2002-06-13 | 1 | -12/+2 |
|
|
* | Major overhaul of timeout sockets: | Guido van Rossum | 2002-06-13 | 1 | -1/+4 |
|
|
* | Fix a typo. | Guido van Rossum | 2002-06-13 | 1 | -1/+2 |
|
|
* | Remove some overly complicated ways to concatenate and repeat strings | Guido van Rossum | 2002-06-12 | 1 | -6/+7 |
|
|
* | Don't test for Java, test for sys.getrefcount. | Guido van Rossum | 2002-06-12 | 1 | -2/+2 |
|
|
* | Some provisional changes to get more tests to run on Windows (I hope). | Guido van Rossum | 2002-06-12 | 1 | -6/+8 |
|
|
* | Argh. Typo. :-( | Guido van Rossum | 2002-06-12 | 1 | -1/+1 |
|
|
* | Allow absent fromfd(), for Windows. | Guido van Rossum | 2002-06-12 | 1 | -0/+2 |
|
|
* | testSetSockOpt() should not require the reuse flag to be 1 -- any | Guido van Rossum | 2002-06-12 | 1 | -2/+2 |
|
|
* | Lose the message on assertEqual calls -- they actually hide | Guido van Rossum | 2002-06-12 | 1 | -18/+15 |
|
|