##// END OF EJS Templates
raise better ValidationError in validate...
raise better ValidationError in validate when oneOf would fail on a cell or output with an unhelpful error, validate again against the target spec, based on the output or cell type.

File last commit:

r16136:94a4d14e
r18245:b686de41
Show More
list_subdirs.ipy
5 lines | 162 B | text/plain | TextLexer
# A simple IPython script that lists files in all subdirs
from IPython.display import FileLinks, display
dirs =!ls -d */
for d in dirs:
display(FileLinks(d))