##// END OF EJS Templates
Do not leave toolbar element focused....
Do not leave toolbar element focused. Can lead to enter re-trigerring them (ok, can be a feature sometimes I guess) closes #7475

File last commit:

r15516:43a46eb6
r19951:dcae386b
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