mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-19 14:45:10 +00:00
11 lines
332 B
Python
11 lines
332 B
Python
"""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
|