##// END OF EJS Templates
For timeit magic, no s at "loops" if only one loop...
For timeit magic, no s at "loops" if only one loop Just a grammatical correction: no s at "loops" if there is only one loop. It affects the %timeit magic, its doc, and the message about "an intermediate result being cached".

File last commit:

r21663:e3427ad0
r21754:012a2a5a
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