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 local names that won't be changed by the reload. Diez -- http://mail.python.org/mailman/listinfo/python-list