Comment 5 for bug 704981

Revision history for this message
Tsung-Hsiang Chang (vgod) wrote : Re: [request] IDE: want a reset feature to get import repeated

A workaround to this bug is using the reload function of Python after import.
For example,

import a_module
reload(a_module)

would force the IDE to reload the a_module every time.