##// END OF EJS Templates
Remove old mentions and uses of ipython_extension_dir...
Remove old mentions and uses of ipython_extension_dir The bulk of this functionality was removed in IPython 8.6.0, but there were still mentions of it in the docs and in the reload code.

File last commit:

r20547:8f4e2b41
r28597:3f2bb728
Show More
list_subdirs.ipy
6 lines | 194 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:
if d != '__pycache__/':
display(FileLinks(d))