Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
ipython / utils / signatures.py
Size: Mime:
"""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