Ipython 0.11+: access and configure from an interactive session

t In the old days of ipython (version 0.10 or lower) I used to have access and control a running instance of ipython from an ipython interactive session using the _ip variable available in the username space, for example

_ip.IP.rc.editor = '/usr/bin/jed' 

I am starting to use ipython 0.13 and apparently this "object" is being removed from user access. Is it available and if so, how to get it? I want to experiment with a prompt line, for example. c.PromptManager.in_template in the new ipython_config.py file.

+4
source share

Source: https://habr.com/ru/post/1437453/


All Articles