py-vterm-interaction.el/scripts/is_ipython.py

6 lines
147 B
Python
Raw Normal View History

def is_ipython(tempfile):
try:
return dump_json(tempfile, __IPYTHON__)
except NameError:
return dump_json(tempfile, False)