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