[ Avaa Bypassed ]




Upload:

Command:

hmhc3928@18.191.234.200: ~ $
import sys

from pip._internal.utils.compatibility_tags import (
    get_supported,
    version_info_to_nodot,
)
from pip._internal.utils.misc import normalize_version_info
from pip._internal.utils.typing import MYPY_CHECK_RUNNING

if MYPY_CHECK_RUNNING:
    from typing import List, Optional, Tuple

    from pip._vendor.packaging.tags import Tag


class TargetPython(object):

    """
    Encapsulates the properties of a Python interpreter one is targeting
    for a package install, download, etc.
    """

    __slots__ = [
        "_given_py_version_info",
        "abi",
        "implementation",
        "platform",
        "py_version",
        "py_version_info",
        "_valid_tags",
    ]

    def __init__(
        self,
        platform=None,  # type: Optional[str]
        py_version_info=None,  # type: Optional[Tuple[int, ...]]
        abi=None,  # type: Optional[str]
        implementation=None,  # type: Optional[str]
    ):
        # type: (...) -> None
        """
        :param platform: A string or None. If None, searches for packages
            that are supported by the current system. Otherwise, will find
            packages that can be built on the platform passed in. These
            packages will only be downloaded for distribution: they will
            not be built locally.
        :param py_version_info: An optional tuple of ints representing the
            Python version information to use (e.g. `sys.version_info[:3]`).
            This can have length 1, 2, or 3 when provided.
        :param abi: A string or None. This is passed to compatibility_tags.py's
            get_supported() function as is.
        :param implementation: A string or None. This is passed to
            compatibility_tags.py's get_supported() function as is.
        """
        # Store the given py_version_info for when we call get_supported().
        self._given_py_version_info = py_version_info

        if py_version_info is None:
            py_version_info = sys.version_info[:3]
        else:
            py_version_info = normalize_version_info(py_version_info)

        py_version = '.'.join(map(str, py_version_info[:2]))

        self.abi = abi
        self.implementation = implementation
        self.platform = platform
        self.py_version = py_version
        self.py_version_info = py_version_info

        # This is used to cache the return value of get_tags().
        self._valid_tags = None  # type: Optional[List[Tag]]

    def format_given(self):
        # type: () -> str
        """
        Format the given, non-None attributes for display.
        """
        display_version = None
        if self._given_py_version_info is not None:
            display_version = '.'.join(
                str(part) for part in self._given_py_version_info
            )

        key_values = [
            ('platform', self.platform),
            ('version_info', display_version),
            ('abi', self.abi),
            ('implementation', self.implementation),
        ]
        return ' '.join(
            '{}={!r}'.format(key, value) for key, value in key_values
            if value is not None
        )

    def get_tags(self):
        # type: () -> List[Tag]
        """
        Return the supported PEP 425 tags to check wheel candidates against.

        The tags are returned in order of preference (most preferred first).
        """
        if self._valid_tags is None:
            # Pass versions=None if no py_version_info was given since
            # versions=None uses special default logic.
            py_version_info = self._given_py_version_info
            if py_version_info is None:
                version = None
            else:
                version = version_info_to_nodot(py_version_info)

            tags = get_supported(
                version=version,
                platform=self.platform,
                abi=self.abi,
                impl=self.implementation,
            )
            self._valid_tags = tags

        return self._valid_tags

Filemanager

Name Type Size Permission Actions
__pycache__ Folder 0755
.__init__.pyo.40009 File 244 B 0644
.candidate.pyo.40009 File 1.79 KB 0644
.format_control.pyo.40009 File 3.59 KB 0644
.index.pyo.40009 File 1.45 KB 0644
.scheme.pyo.40009 File 1.12 KB 0644
.search_scope.pyo.40009 File 4 KB 0644
.selection_prefs.pyo.40009 File 1.89 KB 0644
.target_python.pyo.40009 File 3.99 KB 0644
.wheel.pyo.40009 File 3.86 KB 0644
__init__.py File 63 B 0644
__init__.pyc File 244 B 0644
__init__.pyo File 244 B 0644
candidate.py File 1.17 KB 0644
candidate.pyc File 1.79 KB 0644
candidate.pyo File 1.79 KB 0644
direct_url.py File 6.74 KB 0644
direct_url.pyc File 8.8 KB 0644
direct_url.pyo File 8.76 KB 0644
format_control.py File 2.76 KB 0644
format_control.pyc File 3.59 KB 0644
format_control.pyo File 3.59 KB 0644
index.py File 1.13 KB 0644
index.pyc File 1.45 KB 0644
index.pyo File 1.45 KB 0644
link.py File 7.29 KB 0644
link.pyc File 9.26 KB 0644
link.pyo File 9.1 KB 0644
scheme.py File 778 B 0644
scheme.pyc File 1.12 KB 0644
scheme.pyo File 1.12 KB 0644
search_scope.py File 4.64 KB 0644
search_scope.pyc File 4 KB 0644
search_scope.pyo File 4 KB 0644
selection_prefs.py File 2 KB 0644
selection_prefs.pyc File 1.89 KB 0644
selection_prefs.pyo File 1.89 KB 0644
target_python.py File 3.94 KB 0644
target_python.pyc File 3.99 KB 0644
target_python.pyo File 3.99 KB 0644
wheel.py File 2.71 KB 0644
wheel.pyc File 3.86 KB 0644
wheel.pyo File 3.86 KB 0644