mirror of
https://github.com/python/cpython.git
synced 2026-05-08 21:50:40 -04:00
30f62748e9
* gh-106752: Move zipfile._path into its own package so it may have supplementary behavior.
* Add blurb.
(cherry picked from commit 03185f0c15)
10 lines
211 B
Python
10 lines
211 B
Python
import functools
|
|
|
|
|
|
# from jaraco.functools 3.5.2
|
|
def compose(*funcs):
|
|
def compose_two(f1, f2):
|
|
return lambda *args, **kwargs: f1(f2(*args, **kwargs))
|
|
|
|
return functools.reduce(compose_two, funcs)
|