mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
12 lines
168 B
Python
12 lines
168 B
Python
from functools import partial
|
|
|
|
|
|
def func1():
|
|
"""docstring of func1"""
|
|
pass
|
|
|
|
|
|
func2 = partial(func1)
|
|
func3 = partial(func1)
|
|
func3.__doc__ = "docstring of func3"
|