DEBSOURCES
Skip Quicknav
sources / ipython / 9.8.0-1 / tests / test_decorators_2.py
1234567891011
from IPython.utils import decorators def test_flag_calls(): @decorators.flag_calls def f(): pass assert not f.called f() assert f.called