blob: dedc51cfda53829090e3a782e48a67516c343445 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
"""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
|