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 enigm
johnny schrieb:
> from people.models import *
>
> Now I make changes to the models.py. How do I reload this module in
> Python Shell?
>
reload(module)
which works only with
import people.models
reload(people.models)
Which is better anyway, as the
from module import *
syntax will create lo
from people.models import *
Now I make changes to the models.py. How do I reload this module in
Python Shell?
--
http://mail.python.org/mailman/listinfo/python-list