SILENT KILLERPanel

Current Path: > > opt > alt > python37 > lib64 > python3.7 > > > site-packages > pyrsistent


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/python37/lib64/python3.7///site-packages/pyrsistent

NameTypeSizeLast ModifiedActions
__pycache__ Directory - -
__init__.py File 1479 bytes July 07 2018 13:53:48.
__init__.pyi File 5046 bytes December 19 2018 21:07:14.
_checked_types.py File 18312 bytes October 14 2018 10:06:35.
_compat.py File 521 bytes October 14 2018 10:06:35.
_field_common.py File 10804 bytes October 14 2018 10:06:35.
_helpers.py File 2475 bytes July 07 2018 13:53:48.
_immutable.py File 3559 bytes July 08 2018 07:16:39.
_pbag.py File 6754 bytes October 14 2018 10:06:35.
_pclass.py File 9398 bytes November 17 2018 05:52:33.
_pdeque.py File 12184 bytes October 14 2018 10:06:35.
_plist.py File 8282 bytes October 14 2018 10:06:35.
_pmap.py File 14643 bytes October 14 2018 10:06:35.
_precord.py File 6574 bytes November 17 2018 05:52:33.
_pset.py File 5718 bytes October 14 2018 10:06:35.
_pvector.py File 22731 bytes October 14 2018 10:06:35.
_toolz.py File 3427 bytes July 07 2018 13:53:48.
_transformations.py File 3583 bytes July 07 2018 13:53:48.
py.typed File 0 bytes November 20 2018 21:52:04.
typing.py File 1415 bytes November 17 2018 05:52:33.
typing.pyi File 7030 bytes November 20 2018 21:52:04.

Reading File: //opt/alt/python37/lib64/python3.7///site-packages/pyrsistent/_transformations.py

import re
import six
try:
    from inspect import Parameter, signature
except ImportError:
    signature = None
    try:
        from inspect import getfullargspec as getargspec
    except ImportError:
        from inspect import getargspec


def inc(x):
    """ Add one to the current value """
    return x + 1


def dec(x):
    """ Subtract one from the current value """
    return x - 1


def discard(evolver, key):
    """ Discard the element and returns a structure without the discarded elements """
    try:
        del evolver[key]
    except KeyError:
        pass


# Matchers
def rex(expr):
    """ Regular expression matcher to use together with transform functions """
    r = re.compile(expr)
    return lambda key: isinstance(key, six.string_types) and r.match(key)


def ny(_):
    """ Matcher that matches any value """
    return True

# Support functions
def _chunks(l, n):
    for i in range(0, len(l), n):
        yield l[i:i + n]


def transform(structure, transformations):
    r = structure
    for path, command in _chunks(transformations, 2):
        r = _do_to_path(r, path, command)
    return r


def _do_to_path(structure, path, command):
    if not path:
        return command(structure) if callable(command) else command

    kvs = _get_keys_and_values(structure, path[0])
    return _update_structure(structure, kvs, path[1:], command)


def _items(structure):
    try:
        return structure.items()
    except AttributeError:
        # Support wider range of structures by adding a transform_items() or similar?
        return list(enumerate(structure))


def _get(structure, key, default):
    try:
        if hasattr(structure, '__getitem__'):
            return structure[key]

        return getattr(structure, key)

    except (IndexError, KeyError):
        return default


def _get_keys_and_values(structure, key_spec):
    from pyrsistent._pmap import pmap
    if callable(key_spec):
        # Support predicates as callable objects in the path
        arity = _get_arity(key_spec)
        if arity == 1:
            # Unary predicates are called with the "key" of the path
            # - eg a key in a mapping, an index in a sequence.
            return [(k, v) for k, v in _items(structure) if key_spec(k)]
        elif arity == 2:
            # Binary predicates are called with the key and the corresponding
            # value.
            return [(k, v) for k, v in _items(structure) if key_spec(k, v)]
        else:
            # Other arities are an error.
            raise ValueError(
                "callable in transform path must take 1 or 2 arguments"
            )

    # Non-callables are used as-is as a key.
    return [(key_spec, _get(structure, key_spec, pmap()))]


if signature is None:
    def _get_arity(f):
        argspec = getargspec(f)
        return len(argspec.args) - len(argspec.defaults or ())
else:
    def _get_arity(f):
        return sum(
            1
            for p
            in signature(f).parameters.values()
            if p.default is Parameter.empty
            and p.kind in (Parameter.POSITIONAL_ONLY, Parameter.POSITIONAL_OR_KEYWORD)
        )

def _update_structure(structure, kvs, path, command):
    e = structure.evolver()
    if not path and command is discard:
        # Do this in reverse to avoid index problems with vectors. See #92.
        for k, v in reversed(kvs):
            discard(e, k)
    else:
        for k, v in kvs:
            result = _do_to_path(v, path, command)
            if result is not v:
                e[k] = result

    return e.persistent()

SILENT KILLER Tool