mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 21:51:50 +00:00 
			
		
		
		
	Revert "bpo-34977: Add Windows App Store package (GH-10245)" (GH-11019)
This reverts commit 468a15aaf9.
			
			
This commit is contained in:
		
							parent
							
								
									8452ca15f4
								
							
						
					
					
						commit
						cb0b78a070
					
				
					 52 changed files with 331 additions and 3056 deletions
				
			
		|  | @ -1,25 +0,0 @@ | |||
| """distutils.command.bdist_wininst | ||||
| 
 | ||||
| Suppress the 'bdist_wininst' command, while still allowing | ||||
| setuptools to import it without breaking.""" | ||||
| 
 | ||||
| from distutils.core import Command | ||||
| from distutils.errors import DistutilsPlatformError | ||||
| 
 | ||||
| 
 | ||||
| class bdist_wininst(Command): | ||||
|     description = "create an executable installer for MS Windows" | ||||
| 
 | ||||
|     # Marker for tests that we have the unsupported bdist_wininst | ||||
|     _unsupported = True | ||||
| 
 | ||||
|     def initialize_options(self): | ||||
|         pass | ||||
| 
 | ||||
|     def finalize_options(self): | ||||
|         pass | ||||
| 
 | ||||
|     def run(self): | ||||
|         raise DistutilsPlatformError( | ||||
|             "bdist_wininst is not supported in this Python distribution" | ||||
|         ) | ||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Victor Stinner
						Victor Stinner