SILENT KILLERPanel

Current Path: > > opt > alt > python-internal > lib64 > python3.11 > > > importlib > resources


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/python-internal/lib64/python3.11///importlib/resources

NameTypeSizeLast ModifiedActions
__pycache__ Directory - -
__init__.py File 506 bytes June 03 2025 18:38:25.
_adapters.py File 4504 bytes June 03 2025 18:38:25.
_common.py File 2891 bytes June 03 2025 18:38:25.
_itertools.py File 884 bytes June 03 2025 18:38:25.
_legacy.py File 3494 bytes June 03 2025 18:38:25.
abc.py File 4571 bytes June 03 2025 18:38:25.
readers.py File 3557 bytes June 03 2025 18:38:25.
simple.py File 3123 bytes June 03 2025 18:38:25.

Reading File: //opt/alt/python-internal/lib64/python3.11///importlib/resources/_itertools.py

from itertools import filterfalse

from typing import (
    Callable,
    Iterable,
    Iterator,
    Optional,
    Set,
    TypeVar,
    Union,
)

# Type and type variable definitions
_T = TypeVar('_T')
_U = TypeVar('_U')


def unique_everseen(
    iterable: Iterable[_T], key: Optional[Callable[[_T], _U]] = None
) -> Iterator[_T]:
    "List unique elements, preserving order. Remember all elements ever seen."
    # unique_everseen('AAAABBBCCDAABBB') --> A B C D
    # unique_everseen('ABBCcAD', str.lower) --> A B C D
    seen: Set[Union[_T, _U]] = set()
    seen_add = seen.add
    if key is None:
        for element in filterfalse(seen.__contains__, iterable):
            seen_add(element)
            yield element
    else:
        for element in iterable:
            k = key(element)
            if k not in seen:
                seen_add(k)
                yield element

SILENT KILLER Tool