Read HTTP response inside transient_internet()
diff --git a/Lib/test/test_urllibnet.py b/Lib/test/test_urllibnet.py
index a019ddd..32efb2b 100644
--- a/Lib/test/test_urllibnet.py
+++ b/Lib/test/test_urllibnet.py
@@ -12,6 +12,7 @@
 
 
 class URLTimeoutTest(unittest.TestCase):
+    # XXX this test doesn't seem to test anything useful.
 
     TIMEOUT = 30.0
 
@@ -24,7 +25,7 @@
     def testURLread(self):
         with support.transient_internet("www.python.org"):
             f = urllib.request.urlopen("http://www.python.org/")
-        x = f.read()
+            x = f.read()
 
 class urlopenNetworkTests(unittest.TestCase):
     """Tests urllib.reqest.urlopen using the network.
diff --git a/Misc/NEWS b/Misc/NEWS
index 4aa86c7..2fd4c39 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -152,6 +152,8 @@
 - Issue #10276: Fix the results of zlib.crc32() and zlib.adler32() on buffers
   larger than 4GB.  Patch by Nadeem Vawda.
 
+- Issue #9348: Raise an early error if argparse nargs and metavar don't match.
+
 Build
 -----
 
@@ -1364,8 +1366,6 @@
 
 - Issue #9948: Fixed problem of losing filename case information.
 
-- Issue #9348: Raise an early error if argparse nargs and metavar don't match.
-
 Extension Modules
 -----------------