##// END OF EJS Templates
Partly revert "remove now-obsolete use of skip_doctest outside core"...
Partly revert "remove now-obsolete use of skip_doctest outside core" This partly reverts commit 02234da0d461f5ddee142d51952dc10a86b8074e. test_decorators.py is intended to test skip_doctest, the removing was wrong.

File last commit:

r20547:8f4e2b41
r26938:fda2ebea
Show More
list_subdirs.ipy
6 lines | 194 B | text/plain | TextLexer
Brian E. Granger
Simplify .py listing code, moving Misc examples.
r16134 # A simple IPython script that lists files in all subdirs
from IPython.display import FileLinks, display
dirs =!ls -d */
for d in dirs:
Min RK
pass on IPython Kernel example notebooks...
r20547 if d != '__pycache__/':
display(FileLinks(d))