summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_socket.py
Commit message (Expand)AuthorAgeFilesLines
* Fix the IPv6 pton/ntop tests. Why weren't these failing on Linux? No IPv6?Guido van Rossum2007-08-171-5/+5
* Down with str8!Guido van Rossum2007-08-151-2/+2
* Make sure socket.close() doesn't interfere with socket.makefile().Jeremy Hylton2007-08-031-0/+39
* Fix test_socket.py. Simple str/bytes issue with IPV6 addresse.Guido van Rossum2007-07-101-2/+2
* Simplify socket_repr() by using PyUnicode_FromFormat()Walter Dörwald2007-06-051-0/+4
* Merged revisions 55407-55513 via svnmerge fromGuido van Rossum2007-05-221-1/+1
* Sockets facelift. APIs that could return binary data (e.g. aton() andGuido van Rossum2007-05-211-39/+16
* Make test_socket pass. There was an unchecked error when a UnicodeGuido van Rossum2007-05-181-23/+22
* Merged revisions 53952-54987 via svnmerge fromGuido van Rossum2007-04-271-2/+104
* Merged revisions 53451-53537 via svnmerge fromThomas Wouters2007-02-011-1/+27
* Rip out 'long' and 'L'-suffixed integer literals.Guido van Rossum2007-01-151-4/+4
* Merged revisions 53434 via svnmerge fromGuido van Rossum2007-01-151-0/+14
* SF patch 1631942 by Collin Winter:Guido van Rossum2007-01-101-1/+1
* Killed the <> operator. You must now use !=.Guido van Rossum2006-08-241-1/+1
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-111-5/+62
* Merge the rest of the trunk.Thomas Wouters2006-06-081-6/+6
* Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.Thomas Wouters2006-05-271-1/+32
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-2/+38
* patch [ 756021 ] Allow socket.inet_aton("255.255.255.255") on WindowsGeorg Brandl2005-08-261-0/+2
* Add support for FreeBSD 7.Hye-Shik Chang2005-07-171-1/+1
* Fix test for socket.getfqdn() to also include the name returned byBrett Cannon2005-03-111-1/+1
* Add 'linux2' as one of the platforms that does not use the echo service as oneBrett Cannon2004-11-201-1/+2
* Add support for FreeBSD 6.Hye-Shik Chang2004-08-181-1/+1
* Being bsd-based, darwin/macosx has the same limitation w.r.t. the "echo"Skip Montanaro2004-08-161-1/+1
* Whitespace normalization.Tim Peters2004-08-091-1/+1
* Patch #1003700: Add socketpair function to socket module.Dave Cole2004-08-091-0/+43
* FreeBSD's services file contains an additional echo service entry, withAndrew MacIntyre2004-07-121-1/+7
* testGetServBy(): Use services that should be available both on *nix andBarry Warsaw2004-07-061-1/+1
* 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