##// END OF EJS Templates
.gitignore: ignore 'docs/source/config/shortcuts/table.tsv'...
.gitignore: ignore 'docs/source/config/shortcuts/table.tsv' The generated file 'docs/source/config/shortcuts/table.tsv' is generetad by the documentation build since 64e72a955 (Restore shortcuts in documentation, define identifiers, 2023-01-08) but it missing from '.gitignore'. Add it now.

File last commit:

r15516:43a46eb6
r28182:af07fa3c
Show More
test_decorators.py
9 lines | 170 B | text/x-python | PythonLexer
from IPython.utils import decorators
def test_flag_calls():
@decorators.flag_calls
def f():
pass
assert not f.called
f()
assert f.called