D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
opt
/
imh-python
/
lib
/
python3.9
/
site-packages
/
IPython
/
utils
/
tests
/
Filename :
test_decorators.py
back
Copy
from IPython.utils import decorators def test_flag_calls(): @decorators.flag_calls def f(): pass assert not f.called f() assert f.called