mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 21:51:50 +00:00 
			
		
		
		
	bpo-37421: urllib.request tests call urlcleanup() (GH-14529)
urllib.request tests now call urlcleanup() to remove temporary files created by urlretrieve() tests and to clear the _opener global variable set by urlopen() and functions calling indirectly urlopen(). regrtest now checks if urllib.request._url_tempfiles and urllib.request._opener are changed by tests.
This commit is contained in:
		
							parent
							
								
									039fb49c18
								
							
						
					
					
						commit
						7cb9204ee1
					
				
					 9 changed files with 62 additions and 0 deletions
				
			
		|  | @ -309,6 +309,9 @@ def log_message(self, format, *args): | |||
| class PasswordProtectedSiteTestCase(unittest.TestCase): | ||||
| 
 | ||||
|     def setUp(self): | ||||
|         # clear _opener global variable | ||||
|         self.addCleanup(urllib.request.urlcleanup) | ||||
| 
 | ||||
|         self.server = HTTPServer((support.HOST, 0), RobotHandler) | ||||
| 
 | ||||
|         self.t = threading.Thread( | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Victor Stinner
						Victor Stinner