##// END OF EJS Templates
Fix broken jedi auto-completion with newest jedi...
Fix broken jedi auto-completion with newest jedi In jedi v0.11, parser has been refactored in and moved into a separate `parso` package.

File last commit:

r15516:43a46eb6
r24033:b027fd81
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