##// END OF EJS Templates
include docstring in detail_level=1 if no source is found...
include docstring in detail_level=1 if no source is found We currently display source for ?? and docstring for ?, which means less info is displayed if no source is found (e.g. compiled functions). This displays docstring for ?? as a fallback when no Source is found. This is a regression in 5.x

File last commit:

r20547:8f4e2b41
r23021:ebedbe27
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))