##// END OF EJS Templates
Merge pull request #9124 from wilywampa/fix_ReprPrinter_max_seq_length...
Merge pull request #9124 from wilywampa/fix_ReprPrinter_max_seq_length Fix max_seq_length input to RepresentationPrinter

File last commit:

r21663:e3427ad0
r21904:3e3b2c42 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