commit | 06a3c8ae82c76bd0ea21d3860a65bd6ece6ab72e | [log] [tgz] |
---|---|---|
author | Daniel Stutzbach <daniel@stutzbachenterprises.com> | Fri Sep 03 11:11:43 2010 +0000 |
committer | Daniel Stutzbach <daniel@stutzbachenterprises.com> | Fri Sep 03 11:11:43 2010 +0000 |
tree | 040195d0c10c2f665bee3982dcbf6d651e04e5b8 | |
parent | 2d444496b39c091be4104125ab61c810654d7a40 [diff] |
fromfd exists on Windows now
diff --git a/Lib/test/test_socket.py b/Lib/test/test_socket.py index 5a8aa5a..60a44dc 100644 --- a/Lib/test/test_socket.py +++ b/Lib/test/test_socket.py
@@ -708,8 +708,6 @@ def testFromFd(self): # Testing fromfd() - if not hasattr(socket, "fromfd"): - return # On Windows, this doesn't exist fd = self.cli_conn.fileno() sock = socket.fromfd(fd, socket.AF_INET, socket.SOCK_STREAM) msg = sock.recv(1024)