##// END OF EJS Templates
Merge pull request #4572 from ivanov/magic-docs...
Merge pull request #4572 from ivanov/magic-docs DOC: %profile docstring should reference %prun

File last commit:

r13626:6fcd7bd8
r13689:f5b49c87 merge
Show More
hide-whos.rst
12 lines | 634 B | text/x-rst | RstLexer
MinRK
add whatsnew/pr for initial hidden-ns changes
r13624 changes to hidden namespace on startup
--------------------------------------
Previously, all names declared in code run at startup
(startup files, ``ipython -i script.py``, etc.)
MinRK
mention %whos instead of %who
r13626 were added to the hidden namespace, which hides the names from tools like ``%whos``.
MinRK
add whatsnew/pr for initial hidden-ns changes
r13624 There are two changes to this behavior:
1. Scripts run on the command-line ``ipython -i script.py``now behave the same as if they were
passed to ``%run``, so their variables are never hidden.
2. A boolean config flag ``InteractiveShellApp.hide_initial_ns`` has been added to optionally
disable the hidden behavior altogether. The default behavior is unchanged.