loading.py 文件源码

python
阅读 31 收藏 0 点赞 0 评论 0

项目:django-account-actions 作者: erudit 项目源码 文件源码
def load(modname):
    """ Loads all the modules that are named 'modname' from all the installed applications. """

    def _get_module(app, modname):
        # Find out the app's __path__
        try:
            app_path = import_module(app).__path__
        except AttributeError:  # pragma: no cover
            return

        # Use imp.find_module to find the app's modname.py
        try:
            imp.find_module(modname, app_path)
        except ImportError:  # pragma: no cover
            return

        # Import the app's module file
        import_module('{}.{}'.format(app, modname))

    for app in settings.INSTALLED_APPS:
        _get_module(app, modname)
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号