##// END OF EJS Templates
Merge pull request #12346 from meeseeksmachine/auto-backport-of-pr-12305-on-7.x...
Merge pull request #12346 from meeseeksmachine/auto-backport-of-pr-12305-on-7.x Backport PR #12305 on branch 7.x (Fix ipython#11508: check if line_buffer is None)

File last commit:

r20547:8f4e2b41
r25771:0cf8ac5a merge
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))