##// END OF EJS Templates
address review in contents service...
address review in contents service - various docstrings, comments clarified and updated - misc typos - fix and test creating an untitled directory via POST - only define `message` if there's something to say

File last commit:

r18590:be819bae
r18758:8ab80d68
Show More
Clear Output.ipynb
38 lines | 582 B | text/plain | TextLexer
In [1]:
from IPython.display import clear_output
In [2]:
for i in range(10):
    clear_output()
    print(i)
9