##// END OF EJS Templates
Merge pull request #9562 from klonuo/docs-fixes-4...
Merge pull request #9562 from klonuo/docs-fixes-4 Add autogen and html_noapi to docs make.cmd

File last commit:

r21663:e3427ad0
r22480:2c5e89f4 merge
Show More
signatures.py
11 lines | 332 B | text/x-python | PythonLexer
"""Function signature objects for callables.
Use the standard library version if available, as it is more up to date.
Fallback on backport otherwise.
"""
try:
from inspect import BoundArguments, Parameter, Signature, signature
except ImportError:
from ._signatures import BoundArguments, Parameter, Signature, signature