File: embed2.py

package info (click to toggle)
ipython 8.35.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 11,696 kB
  • sloc: python: 42,461; sh: 376; makefile: 243
file content (5 lines) | stat: -rw-r--r-- 220 bytes parent folder | download | duplicates (7)
1
2
3
4
5
"""This tests passing a dict for the user_ns at shell instantiation."""
from IPython import embed

user_ns = dict(cookie='monster')
embed(user_ns=user_ns, banner1="check 'cookie' present, locals and globals equivalent")