From 11b42e1cd245c1c5d0ef164effbc9e9479646683 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Sat, 5 Feb 2022 18:55:30 +0100 Subject: [PATCH] bpo-46648: test_urllib2.test_issue16464() uses httpbin.org The test_issue16464() test of test_urllib2 now uses "http://httpbin.org/post" URL instead of "http://www.example.com/". --- Lib/test/test_urllib2.py | 5 +++-- .../next/Tests/2022-02-05-18-58-37.bpo-46648.EJUGbT.rst | 3 +++ 2 files changed, 6 insertions(+), 2 deletions(-) create mode 100644 Misc/NEWS.d/next/Tests/2022-02-05-18-58-37.bpo-46648.EJUGbT.rst diff --git a/Lib/test/test_urllib2.py b/Lib/test/test_urllib2.py index a2b1340e0bf5ba..fb2541bff89cf8 100644 --- a/Lib/test/test_urllib2.py +++ b/Lib/test/test_urllib2.py @@ -1791,9 +1791,10 @@ class MyOtherHTTPHandler(urllib.request.HTTPHandler): @unittest.skipUnless(support.is_resource_enabled('network'), 'test requires network access') def test_issue16464(self): - with socket_helper.transient_internet("http://www.example.com/"): + url = "http://httpbin.org/post" + with socket_helper.transient_internet(url): opener = urllib.request.build_opener() - request = urllib.request.Request("http://www.example.com/") + request = urllib.request.Request(url) self.assertEqual(None, request.data) opener.open(request, "1".encode("us-ascii")) diff --git a/Misc/NEWS.d/next/Tests/2022-02-05-18-58-37.bpo-46648.EJUGbT.rst b/Misc/NEWS.d/next/Tests/2022-02-05-18-58-37.bpo-46648.EJUGbT.rst new file mode 100644 index 00000000000000..970b798a576a98 --- /dev/null +++ b/Misc/NEWS.d/next/Tests/2022-02-05-18-58-37.bpo-46648.EJUGbT.rst @@ -0,0 +1,3 @@ +The test_issue16464() test of test_urllib2 now uses +``http://httpbin.org/post`` URL instead of ``http://www.example.com/``. +Patch by Victor Stinner.