mirror of
				https://github.com/python/cpython.git
				synced 2025-11-04 07:31:38 +00:00 
			
		
		
		
	Also added refactoring and added basic tests for the argument parsing in both ensurepip._main and ensurepip._uninstall._main.
		
			
				
	
	
		
			30 lines
		
	
	
	
		
			780 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
	
		
			780 B
		
	
	
	
		
			Python
		
	
	
	
	
	
"""Basic pip uninstallation support, helper for the Windows uninstaller"""
 | 
						|
 | 
						|
import argparse
 | 
						|
import ensurepip
 | 
						|
 | 
						|
 | 
						|
def _main(argv=None):
 | 
						|
    parser = argparse.ArgumentParser(prog="python -m ensurepip._uninstall")
 | 
						|
    parser.add_argument(
 | 
						|
        "--version",
 | 
						|
        action="version",
 | 
						|
        version="pip {}".format(ensurepip.version()),
 | 
						|
        help="Show the version of pip this will attempt to uninstall.",
 | 
						|
    )
 | 
						|
    parser.add_argument(
 | 
						|
        "-v", "--verbose",
 | 
						|
        action="count",
 | 
						|
        default=0,
 | 
						|
        dest="verbosity",
 | 
						|
        help=("Give more output. Option is additive, and can be used up to 3 "
 | 
						|
              "times."),
 | 
						|
    )
 | 
						|
 | 
						|
    args = parser.parse_args(argv)
 | 
						|
 | 
						|
    ensurepip._uninstall_helper(verbosity=args.verbosity)
 | 
						|
 | 
						|
 | 
						|
if __name__ == "__main__":
 | 
						|
    _main()
 |