diff options
author | Florian Bruhin <me@the-compiler.org> | 2022-05-24 12:09:52 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-24 12:09:52 (GMT) |
commit | 37c9a351b15c3fc4fcdca5dcb9ce19e51d7d2dd7 (patch) | |
tree | 91e8a0485693cc2f9a94c41f053880aeef27e32e /Lib | |
parent | 7108bdf27c7a460cf83c4a01dea54ae4591d8aea (diff) | |
download | cpython-37c9a351b15c3fc4fcdca5dcb9ce19e51d7d2dd7.zip cpython-37c9a351b15c3fc4fcdca5dcb9ce19e51d7d2dd7.tar.gz cpython-37c9a351b15c3fc4fcdca5dcb9ce19e51d7d2dd7.tar.bz2 |
GH-93112: Fix missing ResourceDenied import in test_urllib2net (#93113)
The code was moved out of test.support in
311110abcd8ab648dbf1803e36a8ba5d93fa019b (GH-20812), thus making
ResourceDenied undefined.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_urllib2net.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_urllib2net.py b/Lib/test/test_urllib2net.py index 04cfb49..5da41c3 100644 --- a/Lib/test/test_urllib2net.py +++ b/Lib/test/test_urllib2net.py @@ -3,6 +3,7 @@ import unittest from test import support from test.support import os_helper from test.support import socket_helper +from test.support import ResourceDenied from test.test_urllib2 import sanepathname2url import os |