
    tf                        d Z ddlmZ ddlmZ ddlmZ ddlmZ g dZ G d dej                  Z	 G d	 d
ej
                  Z G d dej
                  Z G d dej                  Z G d de          Z eee            G d dej                  Z G d dej                  Z G d dej                  ZdS )z
Interface definitions for builtin types.

After this module is imported, the standard library types will declare
that they implement the appropriate interface.

.. versionadded:: 5.0.0
    )classImplements)collections)io)numbers)IListITupleITextStringIByteStringINativeStringIBoolIDictIFilec                        e Zd ZdZefZddZdS )r   z%
    Interface for :class:`list`
    NFc                     dS )zs
        Sort the list in place and return None.

        *key* and *reverse* must be passed by name only.
        N )keyreverses     ]/var/www/surfInsights/venv3-11/lib/python3.11/site-packages/zope/interface/common/builtins.pysortz
IList.sort.   s          )NF)__name__
__module____qualname____doc__listextra_classesr   r   r   r   r   r   (   s;          GM     r   r   c                       e Zd ZdZefZdS )r   z&
    Interface for :class:`tuple`
    N)r   r   r   r   tupler   r   r   r   r   r   6   s!          HMMMr   r   c                       e Zd ZdZefZdS )r	   zK
    Interface for text ("unicode") strings.

    This is :class:`str`
    N)r   r   r   r   strr   r   r   r   r	   r	   =   s!         
 FMMMr   r	   c                       e Zd ZdZefZdS )r
   z
    Interface for immutable byte strings.

    On all Python versions this is :class:`bytes`.

    Unlike :class:`zope.interface.common.collections.IByteString`
    (the parent of this interface) this does *not* include
    :class:`bytearray`.
    N)r   r   r   r   bytesr   r   r   r   r
   r
   F   s!          HMMMr   r
   c                       e Zd ZdZdS )r   z
    Interface for native strings.

    On all Python versions, this is :class:`str`. Tt extends
    :class:`ITextString`.
    N)r   r   r   r   r   r   r   r   r   S   s           r   r   c                       e Zd ZdZefZdS )r   z%
    Interface for :class:`bool`
    N)r   r   r   r   boolr   r   r   r   r   r   `   !          GMMMr   r   c                       e Zd ZdZefZdS )r   z%
    Interface for :class:`dict`
    N)r   r   r   r   dictr   r   r   r   r   r   g   r&   r   r   c                       e Zd ZdZdZdS )r   a  
    Interface for :class:`file`.

    It is recommended to use the interfaces from
    :mod:`zope.interface.common.io` instead of this interface.

    On Python 3, there is no single implementation of this interface;
    depending on the arguments, the :func:`open` builtin can return
    many different classes that implement different interfaces from
    :mod:`zope.interface.common.io`.
    r   N)r   r   r   r   r   r   r   r   r   r   n   s        
 
 MMMr   r   N)r   zope.interfacer   zope.interface.commonr   r   r   __all__IMutableSequencer   	ISequencer   r	   r
   r   r    	IIntegralr   IMutableMappingr   IIOBaser   r   r   r   <module>r2      s    + * * * * * - - - - - - $ $ $ $ $ $ ) ) ) ) ) )	 	 	    K(       ["       +'   
 
 
 
 
+) 
 
 
    K    ] # # #    G       K'       BJ     r   