mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 02:15:10 +00:00 
			
		
		
		
	 8ad8898420
			
		
	
	
		8ad8898420
		
			
		
	
	
	
	
		
			
			* Ensure importlib.metadata tests do not leak references in sys.modules. * Move importlib.metadata tests to their own package for easier syncing with importlib_metadata. * Update owners and makefile for new directories. * Add blurb
		
			
				
	
	
		
			10 lines
		
	
	
	
		
			233 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			233 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| import unittest
 | |
| 
 | |
| 
 | |
| class fake_filesystem_unittest:
 | |
|     """
 | |
|     Stubbed version of the pyfakefs module
 | |
|     """
 | |
|     class TestCase(unittest.TestCase):
 | |
|         def setUpPyfakefs(self):
 | |
|             self.skipTest("pyfakefs not available")
 |