##// 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_pyfiles.ipy
5 lines | 182 B | text/plain | TextLexer
# A simple IPython script that provides Notebook links to .py files in the cwd
from IPython.display import FileLink, display
files =!ls *.py
for f in files:
display(FileLink(f))