OXIESEC PANEL
- Current Dir:
/
/
usr
/
lib
/
python2.7
/
ensurepip
Server IP: 10.0.0.4
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
07/15/2022 06:13:41 AM
rwxr-xr-x
📄
__init__.py
8.95 KB
07/01/2022 03:56:32 PM
rwxr-xr-x
📄
__init__.pyc
7.55 KB
07/15/2022 06:13:41 AM
rw-r--r--
📄
__main__.py
88 bytes
07/01/2022 03:56:32 PM
rw-r--r--
📄
__main__.pyc
263 bytes
07/15/2022 06:13:41 AM
rw-r--r--
📄
_uninstall.py
808 bytes
07/01/2022 03:56:32 PM
rw-r--r--
📄
_uninstall.pyc
1.09 KB
07/15/2022 06:13:41 AM
rw-r--r--
Editing: _uninstall.py
Close
"""Basic pip uninstallation support, helper for the Windows uninstaller""" import argparse import ensurepip import sys 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) return ensurepip._uninstall_helper(verbosity=args.verbosity) if __name__ == "__main__": sys.exit(_main())