SILENT KILLERPanel

Current Path: > > opt > > alt > python313 > lib > > python3.13 > > site-packages > pip > _internal > cli


Operation   : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
Software     : Apache
Server IP    : 162.0.232.56 | Your IP: 216.73.216.111
Domains      : 1034 Domain(s)
Permission   : [ 0755 ]

Files and Folders in: //opt//alt/python313/lib//python3.13//site-packages/pip/_internal/cli

NameTypeSizeLast ModifiedActions
__pycache__ Directory - -
__init__.py File 132 bytes December 01 2024 12:47:36.
autocompletion.py File 6690 bytes December 01 2024 12:47:36.
base_command.py File 8733 bytes December 01 2024 12:47:36.
cmdoptions.py File 30117 bytes December 01 2024 12:47:36.
command_context.py File 774 bytes December 01 2024 12:47:36.
main.py File 2816 bytes December 01 2024 12:47:36.
main_parser.py File 4338 bytes December 01 2024 12:47:36.
parser.py File 10801 bytes December 01 2024 12:47:36.
progress_bars.py File 1968 bytes December 01 2024 12:47:36.
req_command.py File 18369 bytes December 01 2024 12:47:36.
spinners.py File 5118 bytes December 01 2024 12:47:36.
status_codes.py File 116 bytes December 01 2024 12:47:36.

Reading File: //opt//alt/python313/lib//python3.13//site-packages/pip/_internal/cli/command_context.py

from contextlib import ExitStack, contextmanager
from typing import ContextManager, Generator, TypeVar

_T = TypeVar("_T", covariant=True)


class CommandContextMixIn:
    def __init__(self) -> None:
        super().__init__()
        self._in_main_context = False
        self._main_context = ExitStack()

    @contextmanager
    def main_context(self) -> Generator[None, None, None]:
        assert not self._in_main_context

        self._in_main_context = True
        try:
            with self._main_context:
                yield
        finally:
            self._in_main_context = False

    def enter_context(self, context_provider: ContextManager[_T]) -> _T:
        assert self._in_main_context

        return self._main_context.enter_context(context_provider)

SILENT KILLER Tool