mirror of
https://github.com/vale981/py-vterm-interaction.el
synced 2025-03-05 10:01:41 -05:00
6 lines
147 B
Python
6 lines
147 B
Python
|
def is_ipython(tempfile):
|
||
|
try:
|
||
|
return dump_json(tempfile, __IPYTHON__)
|
||
|
except NameError:
|
||
|
return dump_json(tempfile, False)
|