DEBSOURCES
Skip Quicknav
sources / ipython / 5.1.0-3 / IPython / utils / tests / test_decorators.py
12345678910
from IPython.utils import decorators def test_flag_calls(): @decorators.flag_calls def f(): pass assert not f.called f() assert f.called