If I change the f definition and then call the a.py script then a.py does not know about the changes.
So if I change f() I have to restart Notepad++ in order to use the updated b.py script via the a.py script.
Is there an alternative to reset notepad?
Last edit: Ge Mengano 2019-02-09
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
If I have
# a.py
import b
f()
# b.py
def f():
...
If I change the f definition and then call the a.py script then a.py does not know about the changes.
So if I change f() I have to restart Notepad++ in order to use the updated b.py script via the a.py script.
Is there an alternative to reset notepad?
Last edit: Ge Mengano 2019-02-09
Sorry, I have found the solution searching the forum:
reload(b)