##// END OF EJS Templates
make it clearer that we adapt to old messages...
make it clearer that we adapt to old messages > Adapting to protocol vX for kernel Y instead of > Kernel Y speaks protocol version X some have interpreted the "Kernel speaks" statement was an error message; this should be clearer about what's happening, and that there is no error.

File last commit:

r15516:43a46eb6
r20573:5bd261c6
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