16 Jul 23:02
Does IPython have a "restart"?
From: Dick Moores <rdmoores <at> gmail.com>
Subject: Does IPython have a "restart"?
Newsgroups: gmane.comp.python.ipython.user
Date: 2008-07-16 21:03:07 GMT
Subject: Does IPython have a "restart"?
Newsgroups: gmane.comp.python.ipython.user
Date: 2008-07-16 21:03:07 GMT
I mean something equivalent to what you get when you do a Ctrl+F6 in IDLE:
>>> import math
>>> math.log(3)
1.0986122886681098
>>> =============================================== RESTART ===============================================
>>> math.log(3)
Traceback (most recent call last):
File "<pyshell#9>", line 1, in <module>
math.log(3)
NameError: name 'math' is not defined
>>>
Thanks,
Dick Moores
RSS Feed