summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2013-12-21 23:44:01 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2013-12-21 23:44:01 (GMT)
commit6783487757be881e4ea6e0c9bae36374da7014c2 (patch)
tree8c79c606ac3194638786ee7b4cc91b9625c844f2 /Lib
parent716b7222e9aca9d9f934dc68a9a828942b55d3b4 (diff)
downloadcpython-6783487757be881e4ea6e0c9bae36374da7014c2.zip
cpython-6783487757be881e4ea6e0c9bae36374da7014c2.tar.gz
cpython-6783487757be881e4ea6e0c9bae36374da7014c2.tar.bz2
Fix urllib.request.build_opener mocking in test_distutils (should fix some random buildbot failures)
Diffstat (limited to 'Lib')
-rw-r--r--Lib/distutils/tests/test_register.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/distutils/tests/test_register.py b/Lib/distutils/tests/test_register.py
index 8bcc858..6180133 100644
--- a/Lib/distutils/tests/test_register.py
+++ b/Lib/distutils/tests/test_register.py
@@ -81,11 +81,13 @@ class RegisterTestCase(PyPIRCCommandTestCase):
def _getpass(prompt):
return 'password'
getpass.getpass = _getpass
+ urllib.request._opener = None
self.old_opener = urllib.request.build_opener
self.conn = urllib.request.build_opener = FakeOpener()
def tearDown(self):
getpass.getpass = self._old_getpass
+ urllib.request._opener = None
urllib.request.build_opener = self.old_opener
super(RegisterTestCase, self).tearDown()