summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_socket.py
Commit message (Expand)AuthorAgeFilesLines
* Added socket.getservbyport(), and make its second argument and that ofBarry Warsaw2004-06-281-10/+22
* Add weakref support to sockets and re pattern objects.Raymond Hettinger2004-05-311-0/+14
* SF bug 924242: socket._fileobject._getclosed() returns wrong valueTim Peters2004-03-281-0/+8
* Fix indentation error in testGetServByName and rewrite loop to avoid clumsySkip Montanaro2004-02-101-5/+2
* SF patch #760257: add socket.timeout exceptionRaymond Hettinger2003-06-291-2/+57
* Whitespace normalization.Tim Peters2003-05-121-3/+3
* Combine the functionality of test_support.run_unittest()Walter Dörwald2003-05-011-10/+11
* Skip testing inet_ntop() an inet_pton() if they aren't defined.Guido van Rossum2003-04-251-0/+8
* Patch by Jp Calderone:Guido van Rossum2003-04-251-0/+59
* Also skip testHostnameRes() if gethostbyaddr() raises an exception.Guido van Rossum2002-12-261-1/+5
* Skip testHostnameRes() if gethostbyname() raises an exception.Guido van Rossum2002-12-261-1/+5
* Since it tests both ntohl and ntohs, the test should not be calledGuido van Rossum2002-09-161-1/+1
* Maybe this fixes test_socket on 64-bit Linux.Guido van Rossum2002-09-141-9/+13
* Skip UDP testing for MacPython (for now), it hangs. This may be due toJack Jansen2002-09-061-1/+3
* Don't use hex constants representing negative numbers.Guido van Rossum2002-08-121-1/+1
* testSendAll(): loop until all data is read; this was necessary atGuido van Rossum2002-08-081-3/+3
* Whitespace normalization.Tim Peters2002-08-081-1/+1
* Replace docstrings on test functions witrh comments -- then unittestGuido van Rossum2002-08-081-31/+50
* Tighten the unbuffered readline test to distinguish between the two lines.Guido van Rossum2002-08-071-4/+4
* Oops. I accidentally commented out some tests.Guido van Rossum2002-08-071-4/+4
* "Unbuffered" mode of class _fileobject wasn't actually unbuffered,Guido van Rossum2002-08-071-6/+35
* testGetServByName shouldn't check for getservbyname - the socket moduleSkip Montanaro2002-08-021-18/+17
* modify testGetServByName so it tries a few different protocols. In this daySkip Montanaro2002-08-021-5/+17
* Enable test_socket again, if only to prevent mistakes like JeremyGuido van Rossum2002-07-311-2/+2
* Repair testNtoH for large long arguments.Jeremy Hylton2002-07-311-9/+8
* Extended socket.htonl and ntohl to accept longs.Jeremy Hylton2002-07-251-0/+11
* Remove test that was none too picky about whether attributes exist.Jeremy Hylton2002-07-251-41/+0
* Get rid of relative imports in all unittests. Now anything thatBarry Warsaw2002-07-231-1/+1
* Remove a few lines that aren't used and cause problems on platformsGuido van Rossum2002-07-191-6/+0
* Add test for previous core dump when sending on closed socket withGuido van Rossum2002-07-191-1/+10
* Add default timeout functionality. This adds setdefaulttimeout() andGuido van Rossum2002-07-181-0/+30
* I get failures half of the time that I run this, so I'll disableGuido van Rossum2002-06-201-2/+2
* Michael fixed the race conditions and removed the sleeps.Guido van Rossum2002-06-181-9/+55
* Temporarily disable the timeout and socket tests.Guido van Rossum2002-06-131-12/+12
* Comment out testHostnameRes() -- it depends on a correctly workingGuido van Rossum2002-06-131-10/+10
* Fix non-blocking connect() for Windows. Refactored the codeGuido van Rossum2002-06-131-12/+2
* Major overhaul of timeout sockets:Guido van Rossum2002-06-131-1/+4
* Fix a typo.Guido van Rossum2002-06-131-1/+2
* Remove some overly complicated ways to concatenate and repeat stringsGuido van Rossum2002-06-121-6/+7
* Don't test for Java, test for sys.getrefcount.Guido van Rossum2002-06-121-2/+2
* Some provisional changes to get more tests to run on Windows (I hope).Guido van Rossum2002-06-121-6/+8
* Argh. Typo. :-(Guido van Rossum2002-06-121-1/+1
* Allow absent fromfd(), for Windows.Guido van Rossum2002-06-121-0/+2
* testSetSockOpt() should not require the reuse flag to be 1 -- anyGuido van Rossum2002-06-121-2/+2
* Lose the message on assertEqual calls -- they actually hideGuido van Rossum2002-06-121-18/+15
* New test suite for the socket module by Michael Gilfix.Guido van Rossum2002-06-121-165/+472
* SF patch 555085 (timeout socket implementation) by Michael Gilfix.Guido van Rossum2002-06-061-10/+57
* Refcounting isn't available in Jython. Putting the jython test around it.Finn Bock2001-12-091-8/+9
* getnameinfo() appears to raise socket.error instead ofBarry Warsaw2001-11-091-1/+1
* Correct getnameinfo refcounting and tuple parsing. Fixes #476648.Martin v. Löwis2001-11-021-0/+14