mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
36 lines
704 B
Python
36 lines
704 B
Python
import inspect
|
|
from functools import singledispatch
|
|
|
|
|
|
def assign_signature(func):
|
|
# This is intended to cover more complex signature-rewriting decorators.
|
|
func.__signature__ = inspect.signature(func)
|
|
return func
|
|
|
|
|
|
@singledispatch
|
|
def func(arg, kwarg=None):
|
|
"""A function for general use."""
|
|
pass
|
|
|
|
|
|
@func.register(int)
|
|
@func.register(float)
|
|
def _func_int(arg, kwarg=None):
|
|
"""A function for int."""
|
|
pass
|
|
|
|
|
|
@func.register(str)
|
|
@assign_signature
|
|
def _func_str(arg, kwarg=None):
|
|
"""A function for str."""
|
|
pass
|
|
|
|
|
|
@func.register
|
|
def _func_dict(arg: dict, kwarg=None):
|
|
"""A function for dict."""
|
|
# This function tests for specifying type through annotations
|
|
pass
|