##// END OF EJS Templates
Backport PR #7933: Move dynamic buttons to the left and upload button to the right....
Backport PR #7933: Move dynamic buttons to the left and upload button to the right. Requested by @ellisonbg . Before: ![old](https://cloud.githubusercontent.com/assets/3292874/6454809/aa541ee4-c101-11e4-979f-707df477cdc2.PNG) ...

File last commit:

r15516:43a46eb6
r20875:8a947555
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