mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
12 lines
144 B
Python
12 lines
144 B
Python
|
from functools import partial
|
||
|
|
||
|
|
||
|
def func():
|
||
|
pass
|
||
|
|
||
|
|
||
|
partial_func = partial(func)
|
||
|
|
||
|
builtin_func = print
|
||
|
partial_builtin_func = partial(print)
|