##// END OF EJS Templates
Update COPYING.txt...
Update COPYING.txt Don't exclude other projects Added new line Don't specify that the comment token in Javascript is different from Python. Fix line break Update 3-clause line

File last commit:

r15516:43a46eb6
r15988:4265cfef
Show More
test_decorators.py
9 lines | 170 B | text/x-python | PythonLexer
Thomas Kluyver
Add tests for things in utils
r15516 from IPython.utils import decorators
def test_flag_calls():
@decorators.flag_calls
def f():
pass
assert not f.called
f()
assert f.called