Graybyt3 Was Here
Linux cloud.locucionar.com 3.10.0-1160.81.1.el7.x86_64 #1 SMP Fri Dec 16 17:29:43 UTC 2022 x86_64
Apache
91.191.211.241
/
opt
/
imunify360
/
venv
/
lib64
/
python3.11
/
site-packages
/
setuptools
/
_vendor
/
jaraco
/
__pycache__
[ HOME ]
Exec
Submit
functools.cpython-311.pyc
� J�Fh�: � �P � d dl Z d dlZd dlZd dlZd dlZd dlZd dlZd dlZd dl m Z mZ ede def �� � Z d� Zd� Zd� Z e j � � fd e d e e ge f de fd�Zd � Zd� Zd� Zd� Zd� Z G d� d� � Zd� Zd� d dfd�Zd� Zd� Zd� Zd� Zd� Zddd�d�Z dS )� N)�Callable�TypeVar� CallableT.)�boundc �2 � d� }t j || � � S )a; Compose any number of unary functions into a single unary function. >>> import textwrap >>> expected = str.strip(textwrap.dedent(compose.__doc__)) >>> strip_and_dedent = compose(str.strip, textwrap.dedent) >>> strip_and_dedent(compose.__doc__) == expected True Compose also allows the innermost function to take arbitrary arguments. >>> round_three = lambda x: round(x, ndigits=3) >>> f = compose(round_three, int.__truediv__) >>> [f(3*x, x+1) for x in range(1,10)] [1.5, 2.0, 2.25, 2.4, 2.5, 2.571, 2.625, 2.667, 2.7] c � � �� � �fd�S )Nc �&