johnny wrote:
> from people.models import *
> 
> Now I make changes to the models.py.  How do I reload this module in
> Python Shell?

import people.models
reload(people.models)
from people.models import *

-- 
Robert Kern

"I have come to believe that the whole world is an enigma, a harmless enigma
 that is made terrible by our own mad attempt to interpret it as though it had
 an underlying truth."
  -- Umberto Eco

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to