aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/test/test_socket.py
Commit message (Expand)AuthorAge
* Since it tests both ntohl and ntohs, the test should not be calledGuido van Rossum2002-09-16
* Maybe this fixes test_socket on 64-bit Linux.Guido van Rossum2002-09-14
* Skip UDP testing for MacPython (for now), it hangs. This may be due toJack Jansen2002-09-06
* Don't use hex constants representing negative numbers.Guido van Rossum2002-08-12
* testSendAll(): loop until all data is read; this was necessary atGuido van Rossum2002-08-08
* Whitespace normalization.Tim Peters2002-08-08
* Replace docstrings on test functions witrh comments -- then unittestGuido van Rossum2002-08-08
* Tighten the unbuffered readline test to distinguish between the two lines.Guido van Rossum2002-08-07
* Oops. I accidentally commented out some tests.Guido van Rossum2002-08-07
* "Unbuffered" mode of class _fileobject wasn't actually unbuffered,Guido van Rossum2002-08-07
* testGetServByName shouldn't check for getservbyname - the socket moduleSkip Montanaro2002-08-02
* modify testGetServByName so it tries a few different protocols. In this daySkip Montanaro2002-08-02
* Enable test_socket again, if only to prevent mistakes like JeremyGuido van Rossum2002-07-31
* Repair testNtoH for large long arguments.Jeremy Hylton2002-07-31
* Extended socket.htonl and ntohl to accept longs.Jeremy Hylton2002-07-25
* Remove test that was none too picky about whether attributes exist.Jeremy Hylton2002-07-25
* Get rid of relative imports in all unittests. Now anything thatBarry Warsaw2002-07-23
* Remove a few lines that aren't used and cause problems on platformsGuido van Rossum2002-07-19
* Add test for previous core dump when sending on closed socket withGuido van Rossum2002-07-19
* Add default timeout functionality. This adds setdefaulttimeout() andGuido van Rossum2002-07-18
* I get failures half of the time that I run this, so I'll disableGuido van Rossum2002-06-20
* Michael fixed the race conditions and removed the sleeps.Guido van Rossum2002-06-18
* Temporarily disable the timeout and socket tests.Guido van Rossum2002-06-13
* Comment out testHostnameRes() -- it depends on a correctly workingGuido van Rossum2002-06-13
* Fix non-blocking connect() for Windows. Refactored the codeGuido van Rossum2002-06-13
* Major overhaul of timeout sockets:Guido van Rossum2002-06-13
* Fix a typo.Guido van Rossum2002-06-13
* Remove some overly complicated ways to concatenate and repeat stringsGuido van Rossum2002-06-12
* Don't test for Java, test for sys.getrefcount.Guido van Rossum2002-06-12
* Some provisional changes to get more tests to run on Windows (I hope).Guido van Rossum2002-06-12
* Argh. Typo. :-(Guido van Rossum2002-06-12
* Allow absent fromfd(), for Windows.Guido van Rossum2002-06-12
* testSetSockOpt() should not require the reuse flag to be 1 -- anyGuido van Rossum2002-06-12
* Lose the message on assertEqual calls -- they actually hideGuido van Rossum2002-06-12
* New test suite for the socket module by Michael Gilfix.Guido van Rossum2002-06-12
* SF patch 555085 (timeout socket implementation) by Michael Gilfix.Guido van Rossum2002-06-06
* Refcounting isn't available in Jython. Putting the jython test around it.Finn Bock2001-12-09
* getnameinfo() appears to raise socket.error instead ofBarry Warsaw2001-11-09
* Correct getnameinfo refcounting and tuple parsing. Fixes #476648.Martin v. Löwis2001-11-02
* Test sendall().Guido van Rossum2001-10-29
* Make socket.getservbyname test optional on socket module having thatBarry Warsaw2001-03-23
* String method conversion.Eric S. Raymond2001-02-09
* a bold attempt to fix things broken by MAL's verify patch: importFredrik Lundh2001-01-17
* This patch removes all uses of "assert" in the regression test suiteMarc-André Lemburg2001-01-17
* Update the code to better reflect recommended style:Fred Drake2000-12-12
* Skip Montanaro: modify test_socket.py to listen/connect using loopback addrGuido van Rossum2000-06-29
* Fix the test so that connect() and bind() are called with a singleGuido van Rossum2000-03-24
* Mass check-in after untabifying all files that need it.Guido van Rossum1998-03-26
* Fixed test for socket.error to work when it's a class exception.Guido van Rossum1997-10-01
* socket_type --> SocketTypeFred Drake1997-06-03