summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_socket.py
Commit message (Expand)AuthorAgeFilesLines
* Issue 19572: More silently skipped tests explicitly skipped.Zachary Ware2013-12-081-9/+9
|\
| * Issue 19572: More silently skipped tests explicitly skipped.Zachary Ware2013-12-081-7/+7
| * Issue #18702: All skipped tests now reported as skipped.Serhiy Storchaka2013-11-031-50/+53
* | Fix test_socket for repr updateNick Coghlan2013-11-131-2/+2
* | Normalize whitespaceJason R. Coombs2013-11-101-2/+2
* | Issue #7171: Add Windows implementation of ``inet_ntop`` and ``inet_pton`` to...Atsuo Ishimoto2012-07-161-0/+16
* | Issue #18702: All skipped tests now reported as skipped.Serhiy Storchaka2013-11-031-50/+53
* | Issue #16201: socket: Use inet_pton()/inet_addr() instead of ad-hoc parsing forCharles-François Natali2013-09-131-0/+14
* | Issue #18904: test_os and test_socket use unittest.skipIf() to check if fcntlVictor Stinner2013-09-081-24/+25
* | Issue #18904: test_socket: add inheritance tests using fcntl and FD_CLOEXECVictor Stinner2013-09-081-0/+30
* | Switch the AF_* and SOCK_* constants in the socket module to IntEnum.Eli Bendersky2013-08-311-2/+26
* | Use the recent support.HOSTv6 addition.Charles-François Natali2013-08-311-7/+3
* | Merge.Charles-François Natali2013-08-291-3/+4
|\ \
| * \ Issue #18643: Fix some test_socket failures due to large default socket bufferCharles-François Natali2013-08-291-3/+4
| |\ \ | | |/
| | * Issue #18643: Fix some test_socket failures due to large default socket bufferCharles-François Natali2013-08-291-3/+4
* | | Fix test_socket.test_SOCK_CLOEXEC(), the test was wrongVictor Stinner2013-08-281-1/+1
* | | Issue #18571: Implementation of the PEP 446: file descriptors and file handlesVictor Stinner2013-08-271-11/+43
|/ /
* | (Merge 3.3) test_socket: cancel scheduled alarm on test failureVictor Stinner2013-08-241-0/+1
|\ \ | |/
| * test_socket: cancel scheduled alarm on test failureVictor Stinner2013-08-241-0/+1
| * Issue #17684: Fix some test_socket failures due to limited FD passing supportCharles-Francois Natali2013-05-201-6/+4
* | Issue #18308: don't take the scope ID into account when comparing IPv6Charles-François Natali2013-07-091-1/+5
|\ \ | |/
| * Issue #18308: don't take the scope ID into account when comparing IPv6Charles-François Natali2013-07-091-1/+5
* | (3.3->default) Ensure that the fix for #17269 also works on OSX 10.4Ronald Oussoren2013-06-101-1/+2
|\ \ | |/
| * Ensure that the fix for #17269 also works on OSX 10.4Ronald Oussoren2013-06-101-1/+2
* | (3.3->default) Issue #17269: Workaround for a platform bug in getaddrinfo on OSXRonald Oussoren2013-05-241-0/+3
|\ \ | |/
| * Issue #17269: Workaround for a platform bug in getaddrinfo on OSXRonald Oussoren2013-05-241-0/+3
* | Backed out changeset c0f2b038fc12Charles-François Natali2013-05-211-6/+6
* | Issue #17683: socket module: return AF_UNIX addresses in Linux abstractCharles-François Natali2013-05-211-6/+6
* | Issue #17684: Fix some test_socket failures due to limited FD passing supportCharles-Francois Natali2013-05-201-6/+4
* | attempt to fix bb failure as per http://bugs.python.org/issue17675#msg186595Giampaolo Rodola'2013-04-121-1/+1
* | Fix issue #17675: make socket repr() provide local and remote addresses (if a...Giampaolo Rodola'2013-04-101-2/+11
* | Issue #16997: unittest.TestCase now provides a subTest() context manager to p...Antoine Pitrou2013-03-201-4/+0
* | Merge 3.3, issue #17047: remove doubled words found in 2.7 toTerry Jan Reedy2013-03-111-1/+1
|\ \ | |/
| * Merge 3.2, issue #17047: remove doubled words found in 2.7 toTerry Jan Reedy2013-03-111-1/+1
| |\
| | * Issue #17047: remove doubled words found in 2.7 to 3.4 Lib/*,Terry Jan Reedy2013-03-111-1/+1
| * | Issue #15989: Fix several occurrences of integer overflowSerhiy Storchaka2013-01-191-4/+22
| |\ \ | | |/
| | * Issue #15989: Fix several occurrences of integer overflowSerhiy Storchaka2013-01-191-4/+23
* | | Issue #15359: Add CAN_BCM protocol support to the socket module. Patch by BrianCharles-François Natali2013-02-051-11/+95
* | | Fix test_socket broken in previous commit (changeset 13e2e44db99d).Serhiy Storchaka2013-01-151-5/+7
* | | Issue #15989: Fix several occurrences of integer overflowSerhiy Storchaka2013-01-141-3/+19
* | | Replace IOError with OSError (#16715)Andrew Svetlov2012-12-251-1/+1
* | | Silence sporadic failure in RecvmsgIntoSCTPStreamTest.testRecvmsgEOF (issue #...Antoine Pitrou2012-12-181-1/+8
|\ \ \ | |/ /
| * | Silence sporadic failure in RecvmsgIntoSCTPStreamTest.testRecvmsgEOF (issue #...Antoine Pitrou2012-12-181-1/+8
* | | Issue #16717: get rid of socket.error, replace with OSErrorAndrew Svetlov2012-12-181-56/+56
|/ /
* | Silence sporadic failure in RecvmsgSCTPStreamTest.testRecvmsgEOF (issue #1387...Antoine Pitrou2012-12-161-1/+8
* | Issue #16257: make test_create_connection() handle ENETUNREACH.Trent Nelson2012-10-171-1/+20
|\ \ | |/
| * Issue #16257: make test_create_connection() handle ENETUNREACH.Trent Nelson2012-10-171-1/+20
* | Issue #15842: the SocketIO.{readable,writable,seekable} methods now raise Val...Antoine Pitrou2012-09-141-0/+11
|\ \ | |/
| * Issue #15842: the SocketIO.{readable,writable,seekable} methods now raise Val...Antoine Pitrou2012-09-141-0/+11
* | #15284: Skip {send,recv}msg tests with disabled IPv6Ross Lagerwall2012-07-081-5/+5