
    `                         d dl mZ e G d de                      Ze G d de                      Z e            Z e            ZdS )    )total_orderingc                       e Zd ZdZd ZdS )Mina5  
    An object that is less than any other object (except itself).

    Inspired by https://pypi.python.org/pypi/Extremes

    Examples::

        >>> import sys

        >>> Min < -sys.maxint
        True

        >>> Min < None
        True

        >>> Min < ''
        True

    .. versionadded:: 0.2
    c                     |t           u rdS dS NFT)r   selfothers     3lib/python3.11/site-packages/validators/extremes.py__lt__z
Min.__lt__       C<<5t    N)__name__
__module____qualname____doc__r    r   r   r   r      -         (    r   r   c                       e Zd ZdZd ZdS )MaxaE  
    An object that is greater than any other object (except itself).

    Inspired by https://pypi.python.org/pypi/Extremes

    Examples::

        >>> import sys

        >>> Max > Min
        True

        >>> Max > sys.maxint
        True

        >>> Max > 99999999999999999
        True

    .. versionadded:: 0.2
    c                     |t           u rdS dS r   )r   r   s     r   __gt__z
Max.__gt__6   r   r   N)r   r   r   r   r   r   r   r   r   r       r   r   r   N)	functoolsr   objectr   r   r   r   r   <module>r      s    $ $ $ $ $ $     &   6     &   6 
cee	ceer   