##// END OF EJS Templates
prevent page jump on tooltip actions\n\nExpands the fix of #7367 to tooltip buttons
prevent page jump on tooltip actions\n\nExpands the fix of #7367 to tooltip buttons

File last commit:

r15516:43a46eb6
r19949:b9f2db81
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