mirror of
				https://github.com/python/cpython.git
				synced 2025-11-04 03:44:55 +00:00 
			
		
		
		
	The distutils bdist_wininst command deprecated in Python 3.8 has been removed. The distutils bidst_wheel command is now recommended to distribute binary packages on Windows. * Remove Lib/distutils/command/bdist_wininst.py * Remove PC/bdist_wininst/ project * Remove Lib/distutils/command/wininst-*.exe programs * Remove all references to bdist_wininst
		
			
				
	
	
		
			30 lines
		
	
	
	
		
			771 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
	
		
			771 B
		
	
	
	
		
			Python
		
	
	
	
	
	
"""distutils.command
 | 
						|
 | 
						|
Package containing implementation of all the standard Distutils
 | 
						|
commands."""
 | 
						|
 | 
						|
__all__ = ['build',
 | 
						|
           'build_py',
 | 
						|
           'build_ext',
 | 
						|
           'build_clib',
 | 
						|
           'build_scripts',
 | 
						|
           'clean',
 | 
						|
           'install',
 | 
						|
           'install_lib',
 | 
						|
           'install_headers',
 | 
						|
           'install_scripts',
 | 
						|
           'install_data',
 | 
						|
           'sdist',
 | 
						|
           'register',
 | 
						|
           'bdist',
 | 
						|
           'bdist_dumb',
 | 
						|
           'bdist_rpm',
 | 
						|
           'check',
 | 
						|
           'upload',
 | 
						|
           # These two are reserved for future use:
 | 
						|
           #'bdist_sdux',
 | 
						|
           #'bdist_pkgtool',
 | 
						|
           # Note:
 | 
						|
           # bdist_packager is not included because it only provides
 | 
						|
           # an abstract base class
 | 
						|
          ]
 |