can not find the function on disk even though it is being imported
django manage.py i开发者_如何学运维mports a function execute_manager
using from django.core.management import execute_manager
but when i browse to django->core->management
directory there is no file present as execute_manager
why is that so?
Because it's defined in __init__.py
.
Python Tutorial, §6.4, "Packages"
精彩评论