diff options
author | Nadeem Vawda <nadeem.vawda@gmail.com> | 2012-01-25 04:48:47 (GMT) |
---|---|---|
committer | Nadeem Vawda <nadeem.vawda@gmail.com> | 2012-01-25 04:48:47 (GMT) |
commit | a58c01ba48a4426db45dff71324be6c617efa724 (patch) | |
tree | 56874c173b68368310e017faf8d6bfa1ecdfae4f /Lib/test/test_socket.py | |
parent | 157c1263a2d0563ad9929ae13a28838d5d7e5cad (diff) | |
download | cpython-a58c01ba48a4426db45dff71324be6c617efa724.zip cpython-a58c01ba48a4426db45dff71324be6c617efa724.tar.gz cpython-a58c01ba48a4426db45dff71324be6c617efa724.tar.bz2 |
Remove redundant resource check in test_socket.
Diffstat (limited to 'Lib/test/test_socket.py')
-rw-r--r-- | Lib/test/test_socket.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/test/test_socket.py b/Lib/test/test_socket.py index b5c16ca..d277e36 100644 --- a/Lib/test/test_socket.py +++ b/Lib/test/test_socket.py @@ -1168,7 +1168,6 @@ class GeneralModuleTests(unittest.TestCase): @unittest.skipUnless(support.is_resource_enabled('network'), 'network is not enabled') def test_idna(self): - support.requires('network') # these should all be successful socket.gethostbyname('испытание.python.org') socket.gethostbyname_ex('испытание.python.org') |