OXIESEC PANEL
- Current Dir:
/
/
lib64
/
python2.7
/
ensurepip
Server IP: 2a02:4780:11:1084:0:327f:3464:10
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
02/16/2024 08:50:43 PM
rwxr-xr-x
📄
__init__.py
7.04 KB
11/15/2023 03:01:12 PM
rw-r--r--
📄
__init__.pyc
6.33 KB
11/15/2023 03:01:23 PM
rw-r--r--
📄
__init__.pyo
6.33 KB
11/15/2023 03:01:23 PM
rw-r--r--
📄
__main__.py
88 bytes
11/15/2023 03:01:12 PM
rw-r--r--
📄
__main__.pyc
265 bytes
11/15/2023 03:01:23 PM
rw-r--r--
📄
__main__.pyo
265 bytes
11/15/2023 03:01:23 PM
rw-r--r--
📄
_uninstall.py
808 bytes
11/15/2023 03:01:12 PM
rw-r--r--
📄
_uninstall.pyc
1.1 KB
11/15/2023 03:01:23 PM
rw-r--r--
📄
_uninstall.pyo
1.1 KB
11/15/2023 03:01:23 PM
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())