mirror of
https://github.com/python/cpython.git
synced 2025-08-15 06:10:47 +00:00

* gh-106752: Move zipfile._path into its own package so it may have supplementary behavior.
* Add blurb.
(cherry picked from commit 03185f0c15
)
9 lines
211 B
Python
9 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)
|