blob: 4d0eb74a7e9d963c4a094320eab3667d75ccdeb3 (
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
|