Re: [Tutor] reloading a module

2012-10-03 Thread Dave Angel
On 10/03/2012 09:56 PM, Leo Degon wrote: > So Ive got code that i import a module to get certain saved variables, > where i edit the text file that comprises the module to edit those saved > variable. My problem is I cant reload the module to access those modified > variables. > I was wondering how

Re: [Tutor] reloading a module

2012-10-03 Thread bob gailer
On 10/3/2012 9:56 PM, Leo Degon wrote: So Ive got code that i import a module to get certain saved variables, where i edit the text file that comprises the module to edit those saved variable. My problem is I cant reload the module to access those modified variables. Why not? What did you try?

Re: [Tutor] reloading a module

2012-10-03 Thread Steven D'Aprano
On 04/10/12 11:56, Leo Degon wrote: So Ive got code that i import a module to get certain saved variables, where i edit the text file that comprises the module to edit those saved variable. My problem is I cant reload the module to access those modified variables. I was wondering how can i reload

[Tutor] reloading a module

2012-10-03 Thread Leo Degon
So Ive got code that i import a module to get certain saved variables, where i edit the text file that comprises the module to edit those saved variable. My problem is I cant reload the module to access those modified variables. I was wondering how can i reload or otherwise refresh the module. pyth