##// END OF EJS Templates
Deprecate utils tz (#14256)...
Deprecate utils tz (#14256) Closes #14249 1. Apply `black` to module. 2. Add docstrings mentioning deprecation as of IPython 8.19.0. 3. Implement and add `_warn_deprecated()` function. 4. Explicitly enable display of `DeprecationWarning` for this module.

File last commit:

r16136:94a4d14e
r28533:aa2fb8b7 merge
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))