HEX
Server: Apache
System: Linux dinesh8189 5.15.98-grsec-sharedvalley-2.lc.el8.x86_64 #1 SMP Thu Mar 9 09:07:30 -03 2023 x86_64
User: cgmgerenciamento1 (814285)
PHP: 8.1.26
Disabled: apache_child_terminate,dl,escapeshellarg,escapeshellcmd,exec,link,mail,openlog,passthru,pcntl_alarm,pcntl_exec,pcntl_fork,pcntl_get_last_error,pcntl_getpriority,pcntl_setpriority,pcntl_signal,pcntl_signal_dispatch,pcntl_sigprocmask,pcntl_sigtimedwait,pcntl_sigwaitinfo,pcntl_strerror,pcntl_wait,pcntl_waitpid,pcntl_wexitstatus,pcntl_wifexited,pcntl_wifsignaled,pcntl_wifstopped,pcntl_wstopsig,pcntl_wtermsig,php_check_syntax,php_strip_whitespace,popen,proc_close,proc_open,shell_exec,symlink,system
Upload Files
File: //usr/lib64/python3.11/importlib/metadata/__pycache__/_itertools.cpython-311.pyc
�

!A?h��(�ddlmZdd�Zeeffd�ZdS)�)�filterfalseNc#��K�t��}|j}|�)t|j|��D]}||��|V��dS|D] }||��}||vr||��|V��!dS)zHList unique elements, preserving order. Remember all elements ever seen.N)�set�addr�__contains__)�iterable�key�seen�seen_add�element�ks      �6/usr/lib64/python3.11/importlib/metadata/_itertools.py�unique_everseenrs������5�5�D��x�H�
�{�"�4�#4�h�?�?�	�	�G��H�W�����M�M�M�M�	�	� �	�	�G���G���A���}�}��������
�
�
��		�	�c���|�td��S|� t||��rt|f��S	t|��S#t$rt|f��cYSwxYw)axIf *obj* is iterable, return an iterator over its items::

        >>> obj = (1, 2, 3)
        >>> list(always_iterable(obj))
        [1, 2, 3]

    If *obj* is not iterable, return a one-item iterable containing *obj*::

        >>> obj = 1
        >>> list(always_iterable(obj))
        [1]

    If *obj* is ``None``, return an empty iterable:

        >>> obj = None
        >>> list(always_iterable(None))
        []

    By default, binary and text strings are not considered iterable::

        >>> obj = 'foo'
        >>> list(always_iterable(obj))
        ['foo']

    If *base_type* is set, objects for which ``isinstance(obj, base_type)``
    returns ``True`` won't be considered iterable.

        >>> obj = {'a': 1}
        >>> list(always_iterable(obj))  # Iterate over the dict's keys
        ['a']
        >>> list(always_iterable(obj, base_type=dict))  # Treat dicts as a unit
        [{'a': 1}]

    Set *base_type* to ``None`` to avoid any special handling and treat objects
    Python considers iterable as iterable:

        >>> obj = 'foo'
        >>> list(always_iterable(obj, base_type=None))
        ['f', 'o', 'o']
    N�)�iter�
isinstance�	TypeError)�obj�	base_types  r�always_iterablersx��R�{��B�x�x����:�c�9�#=�#=���S�F�|�|����C�y�y��������S�F�|�|�������s�A�A!� A!)N)�	itertoolsrr�str�bytesrrrr�<module>rsR��!�!�!�!�!�!�����&%(��<�2�2�2�2�2�2r