$81 GRAYBYTE WORDPRESS FILE MANAGER $89

SERVER : vnpttt-amd7f72-h1.vietnix.vn #1 SMP Fri May 24 12:42:50 UTC 2024
SERVER IP : 103.200.23.149 | ADMIN IP 216.73.216.22
OPTIONS : CRL = ON | WGT = ON | SDO = OFF | PKEX = OFF
DEACTIVATED : NONE

/opt/alt/python37/lib/python3.7/site-packages/attr/

HOME
Current File : /opt/alt/python37/lib/python3.7/site-packages/attr//_cmp.py
from __future__ import absolute_import, division, print_function

import functools

from ._compat import new_class
from ._make import _make_ne


_operation_names = {"eq": "==", "lt": "<", "le": "<=", "gt": ">", "ge": ">="}


def cmp_using(
    eq=None,
    lt=None,
    le=None,
    gt=None,
    ge=None,
    require_same_type=True,
    class_name="Comparable",
):
    """
    Create a class that can be passed into `attr.ib`'s ``eq``, ``order``, and
    ``cmp`` arguments to customize field comparison.

    The resulting class will have a full set of ordering methods if
    at least one of ``{lt, le, gt, ge}`` and ``eq``  are provided.

    :param Optional[callable] eq: `callable` used to evaluate equality
        of two objects.
    :param Optional[callable] lt: `callable` used to evaluate whether
        one object is less than another object.
    :param Optional[callable] le: `callable` used to evaluate whether
        one object is less than or equal to another object.
    :param Optional[callable] gt: `callable` used to evaluate whether
        one object is greater than another object.
    :param Optional[callable] ge: `callable` used to evaluate whether
        one object is greater than or equal to another object.

    :param bool require_same_type: When `True`, equality and ordering methods
        will return `NotImplemented` if objects are not of the same type.

    :param Optional[str] class_name: Name of class. Defaults to 'Comparable'.

    See `comparison` for more details.

    .. versionadded:: 21.1.0
    """

    body = {
        "__slots__": ["value"],
        "__init__": _make_init(),
        "_requirements": [],
        "_is_comparable_to": _is_comparable_to,
    }

    # Add operations.
    num_order_functions = 0
    has_eq_function = False

    if eq is not None:
        has_eq_function = True
        body["__eq__"] = _make_operator("eq", eq)
        body["__ne__"] = _make_ne()

    if lt is not None:
        num_order_functions += 1
        body["__lt__"] = _make_operator("lt", lt)

    if le is not None:
        num_order_functions += 1
        body["__le__"] = _make_operator("le", le)

    if gt is not None:
        num_order_functions += 1
        body["__gt__"] = _make_operator("gt", gt)

    if ge is not None:
        num_order_functions += 1
        body["__ge__"] = _make_operator("ge", ge)

    type_ = new_class(class_name, (object,), {}, lambda ns: ns.update(body))

    # Add same type requirement.
    if require_same_type:
        type_._requirements.append(_check_same_type)

    # Add total ordering if at least one operation was defined.
    if 0 < num_order_functions < 4:
        if not has_eq_function:
            # functools.total_ordering requires __eq__ to be defined,
            # so raise early error here to keep a nice stack.
            raise ValueError(
                "eq must be define is order to complete ordering from "
                "lt, le, gt, ge."
            )
        type_ = functools.total_ordering(type_)

    return type_


def _make_init():
    """
    Create __init__ method.
    """

    def __init__(self, value):
        """
        Initialize object with *value*.
        """
        self.value = value

    return __init__


def _make_operator(name, func):
    """
    Create operator method.
    """

    def method(self, other):
        if not self._is_comparable_to(other):
            return NotImplemented

        result = func(self.value, other.value)
        if result is NotImplemented:
            return NotImplemented

        return result

    method.__name__ = "__%s__" % (name,)
    method.__doc__ = "Return a %s b.  Computed by attrs." % (
        _operation_names[name],
    )

    return method


def _is_comparable_to(self, other):
    """
    Check whether `other` is comparable to `self`.
    """
    for func in self._requirements:
        if not func(self, other):
            return False
    return True


def _check_same_type(self, other):
    """
    Return True if *self* and *other* are of the same type, False otherwise.
    """
    return other.value.__class__ is self.value.__class__

Current_dir [ NOT WRITEABLE ] Document_root [ WRITEABLE ]


[ Back ]
NAME
SIZE
LAST TOUCH
USER
CAN-I?
FUNCTIONS
..
--
18 Apr 2024 12.35 AM
root / 996
0755
__pycache__
--
31 Aug 2024 6.47 AM
root / 996
0755
__init__.py
1.575 KB
7 May 2021 4.20 PM
root / 996
0644
__init__.pyi
14.489 KB
5 May 2021 3.25 PM
root / 996
0644
_cmp.py
4.036 KB
6 May 2021 2.03 PM
root / 996
0644
_cmp.pyi
0.311 KB
1 May 2021 7.26 PM
root / 996
0644
_compat.py
7.385 KB
27 Feb 2021 4.49 PM
root / 996
0644
_config.py
0.502 KB
17 Oct 2019 3.29 PM
root / 996
0644
_funcs.py
13.084 KB
6 May 2021 9.11 PM
root / 996
0644
_make.py
95.452 KB
5 May 2021 3.05 PM
root / 996
0644
_next_gen.py
3.977 KB
12 Apr 2021 7.35 PM
root / 996
0644
_version_info.py
2.111 KB
29 Mar 2020 2.56 PM
root / 996
0644
_version_info.pyi
0.204 KB
29 Mar 2020 2.56 PM
root / 996
0644
converters.py
2.968 KB
18 Feb 2021 10.38 PM
root / 996
0644
converters.pyi
0.373 KB
19 Feb 2021 2.15 PM
root / 996
0644
exceptions.py
1.903 KB
30 Apr 2021 7.38 PM
root / 996
0644
exceptions.pyi
0.527 KB
19 Feb 2021 2.15 PM
root / 996
0644
filters.py
1.072 KB
29 Mar 2020 2.56 PM
root / 996
0644
filters.pyi
0.211 KB
19 Feb 2021 2.15 PM
root / 996
0644
py.typed
0 KB
12 Jul 2018 5.28 PM
root / 996
0644
setters.py
1.4 KB
20 Jul 2020 5.43 PM
root / 996
0644
setters.pyi
0.561 KB
6 Apr 2021 11.14 AM
root / 996
0644
validators.py
11.228 KB
20 Jul 2020 5.43 PM
root / 996
0644
validators.pyi
1.826 KB
19 Feb 2021 2.15 PM
root / 996
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME
Static GIF