Hi,
I have the following program:
Code:
a.py:
-----
import b
print "a"
b.py:
-----
print "b"
When I run a.py with the PyS60 Script Shell for the first time, the output is
When I run a.py for the second time, the output is
i.e. module b doesn't get reloaded. Does that mean that whenever I change something in module b during development, I have to restart the Script Shell to see the changes? That's awfully painfull, and I can't imagine that everybody is developing like that...
By the way, is there any possibility to start a script "my_module.py" that lies in "E:\Python" with the Bluetooth Console? I can start a script that lies in "E:\Python\lib" with "import my_script", but I would like to do that with scripts in "E:\Python" as well!
Thanks for any advice!