I have a great solution : stop using reload. It often dangerous and more often silly.
On Apr 7, 2011 5:44 AM, "harrismh777" <harrismh...@charter.net> wrote: All right... somebody is sacked (er, fired) ! Who moved reload()? This kinda stuff is driving me bonkers... there was no need to move reload() anyplace... ... so for those of you who haven't found out yet, if you want to reload a module in 3.x you have to import reload() first from module 'imp' ... now that is just plain wrong. :-} import mymod from imp import reload reload(mymod) <<===== now reload() will work. Somebody out there thinks this is funny, right? >>> reload(mymod) Traceback (most recent call last): File "<pyshell#1>", line 1, in <module> reload(mymod) NameError: name 'reload' is not defined ??????????????????????????? >>> regards, m harris -- http://mail.python.org/mailman/listinfo/python-list
-- http://mail.python.org/mailman/listinfo/python-list