B
    `                 @   s   d Z dZddlmZ ddlmZ ddlmZ G dd dej	Z
G dd	 d	eje
ZG d
d dejeZG dd deZG dd deZG dd deZG dd deeZdS )a  
Sequence Interfaces

Importing this module does *not* mark any standard classes as
implementing any of these interfaces.

While this module is not deprecated, new code should generally use
:mod:`zope.interface.common.collections`, specifically
:class:`~zope.interface.common.collections.ISequence` and
:class:`~zope.interface.common.collections.IMutableSequence`. This
module is occasionally useful for its fine-grained breakdown of interfaces.

The standard library :class:`list`, :class:`tuple` and
:class:`collections.UserList`, among others, implement ``ISequence``
or ``IMutableSequence`` but *do not* implement any of the interfaces
in this module.
Zrestructuredtext    )	Interface)collections)PYTHON2c               @   s   e Zd ZdZdd ZdS )IMinimalSequencea  Most basic sequence interface.

    All sequences are iterable.  This requires at least one of the
    following:

    - a `__getitem__()` method that takes a single argument; integer
      values starting at 0 must be supported, and `IndexError` should
      be raised for the first index for which there is no value, or

    - an `__iter__()` method that returns an iterator as defined in
      the Python documentation (http://docs.python.org/lib/typeiter.html).

    c             C   s   dS )z``x.__getitem__(index) <==> x[index]``

        Declaring this interface does not specify whether `__getitem__`
        supports slice objects.N )indexr   r   f/home/kop/projects/devel/pgwui/test_venv/lib/python3.7/site-packages/zope/interface/common/sequence.py__getitem__4   s    zIMinimalSequence.__getitem__N)__name__
__module____qualname____doc__r	   r   r   r   r   r   %   s   r   c               @   s   e Zd ZdZdS )IFiniteSequencez[
    A sequence of bound size.

    .. versionchanged:: 5.0.0
       Extend ``ISized``
    N)r
   r   r   r   r   r   r   r   r   :   s   r   c               @   sl   e Zd ZdZdd Zdd Zdd Zdd	 Zd
d Zdd Z	dd Z
dd Zdd Zdd Zerhdd ZdS )IReadSequencea.  
    read interface shared by tuple and list

    This interface is similar to
    :class:`~zope.interface.common.collections.ISequence`, but
    requires that all instances be totally ordered. Most users
    should prefer ``ISequence``.

    .. versionchanged:: 5.0.0
       Extend ``IContainer``
    c             C   s   dS )z'``x.__contains__(item) <==> item in x``Nr   )itemr   r   r   __contains__O   s    zIReadSequence.__contains__c             C   s   dS )z"``x.__lt__(other) <==> x < other``Nr   )otherr   r   r   __lt__S   s    zIReadSequence.__lt__c             C   s   dS )z#``x.__le__(other) <==> x <= other``Nr   )r   r   r   r   __le__V   s    zIReadSequence.__le__c             C   s   dS )z#``x.__eq__(other) <==> x == other``Nr   )r   r   r   r   __eq__Y   s    zIReadSequence.__eq__c             C   s   dS )z#``x.__ne__(other) <==> x != other``Nr   )r   r   r   r   __ne__\   s    zIReadSequence.__ne__c             C   s   dS )z"``x.__gt__(other) <==> x > other``Nr   )r   r   r   r   __gt___   s    zIReadSequence.__gt__c             C   s   dS )z#``x.__ge__(other) <==> x >= other``Nr   )r   r   r   r   __ge__b   s    zIReadSequence.__ge__c             C   s   dS )z#``x.__add__(other) <==> x + other``Nr   )r   r   r   r   __add__e   s    zIReadSequence.__add__c             C   s   dS )z``x.__mul__(n) <==> x * n``Nr   )nr   r   r   __mul__h   s    zIReadSequence.__mul__c             C   s   dS )z``x.__rmul__(n) <==> n * x``Nr   )r   r   r   r   __rmul__k   s    zIReadSequence.__rmul__c             C   s   dS )z``x.__getslice__(i, j) <==> x[i:j]``

            Use of negative indices is not supported.

            Deprecated since Python 2.0 but still a part of `UserList`.
            Nr   )ijr   r   r   __getslice__o   s    zIReadSequence.__getslice__N)r
   r   r   r   r   r   r   r   r   r   r   r   r   r   PY2r   r   r   r   r   r   B   s   r   c               @   s    e Zd ZdZdd Zdd ZdS )IExtendedReadSequencezFull read interface for listsc             C   s   dS )z%Return number of occurrences of valueNr   )r   r   r   r   countz   s    zIExtendedReadSequence.countc             G   s   dS )zTindex(value, [start, [stop]]) -> int

        Return first index of *value*
        Nr   )r   argsr   r   r   r   }   s    zIExtendedReadSequence.indexN)r
   r   r   r   r"   r   r   r   r   r   r!   w   s   r!   c               @   sx   e Zd ZdZdd Zdd Zer0dd Zdd	 Zd
d Z	dd Z
dd ZdddZdd Zdd ZdddZdd ZdS )IUniqueMemberWriteSequencezAThe write contract for a sequence that may enforce unique membersc             C   s   dS )z``x.__setitem__(index, item) <==> x[index] = item``

        Declaring this interface does not specify whether `__setitem__`
        supports slice objects.
        Nr   )r   r   r   r   r   __setitem__   s    z&IUniqueMemberWriteSequence.__setitem__c             C   s   dS )z``x.__delitem__(index) <==> del x[index]``

        Declaring this interface does not specify whether `__delitem__`
        supports slice objects.
        Nr   )r   r   r   r   __delitem__   s    z&IUniqueMemberWriteSequence.__delitem__c             C   s   dS )z``x.__setslice__(i, j, other) <==> x[i:j] = other``

            Use of negative indices is not supported.

            Deprecated since Python 2.0 but still a part of `UserList`.
            Nr   )r   r   r   r   r   r   __setslice__   s    z'IUniqueMemberWriteSequence.__setslice__c             C   s   dS )z``x.__delslice__(i, j) <==> del x[i:j]``

            Use of negative indices is not supported.

            Deprecated since Python 2.0 but still a part of `UserList`.
            Nr   )r   r   r   r   r   __delslice__   s    z'IUniqueMemberWriteSequence.__delslice__c             C   s   dS )z``x.__iadd__(y) <==> x += y``Nr   )yr   r   r   __iadd__   s    z#IUniqueMemberWriteSequence.__iadd__c             C   s   dS )zAppend item to endNr   )r   r   r   r   append   s    z!IUniqueMemberWriteSequence.appendc             C   s   dS )zInsert item before indexNr   )r   r   r   r   r   insert   s    z!IUniqueMemberWriteSequence.insertc             C   s   dS )z.Remove and return item at index (default last)Nr   )r   r   r   r   pop   s    zIUniqueMemberWriteSequence.popc             C   s   dS )z Remove first occurrence of valueNr   )r   r   r   r   remove   s    z!IUniqueMemberWriteSequence.removec               C   s   dS )zReverse *IN PLACE*Nr   r   r   r   r   reverse   s    z"IUniqueMemberWriteSequence.reverseNc             C   s   dS )z3Stable sort *IN PLACE*; `cmpfunc(x, y)` -> -1, 0, 1Nr   )Zcmpfuncr   r   r   sort   s    zIUniqueMemberWriteSequence.sortc             C   s   dS )z3Extend list by appending elements from the iterableNr   )iterabler   r   r   extend   s    z!IUniqueMemberWriteSequence.extend)r-   )N)r
   r   r   r   r%   r&   r    r'   r(   r*   r+   r,   r.   r/   r0   r1   r3   r   r   r   r   r$      s   

r$   c               @   s   e Zd ZdZdd ZdS )IWriteSequencez!Full write contract for sequencesc             C   s   dS )z``x.__imul__(n) <==> x *= n``Nr   )r   r   r   r   __imul__   s    zIWriteSequence.__imul__N)r
   r   r   r   r5   r   r   r   r   r4      s   r4   c               @   s   e Zd ZdZdS )	ISequencea  
    Full sequence contract.

    New code should prefer
    :class:`~zope.interface.common.collections.IMutableSequence`.

    Compared to that interface, which is implemented by :class:`list`
    (:class:`~zope.interface.common.builtins.IList`), among others,
    this interface is missing the following methods:

        - clear

        - count

        - index

    This interface adds the following methods:

        - sort
    N)r
   r   r   r   r   r   r   r   r6      s   r6   N)r   Z__docformat__Zzope.interfacer   Zzope.interface.commonr   Zzope.interface._compatr   r    Z	IIterabler   ZISizedr   Z
IContainerr   r!   r$   r4   r6   r   r   r   r   <module>   s   5: