當前位置: 首頁>>代碼示例>>Python>>正文


Python apps.unset_installed_apps方法代碼示例

本文整理匯總了Python中django.apps.apps.unset_installed_apps方法的典型用法代碼示例。如果您正苦於以下問題:Python apps.unset_installed_apps方法的具體用法?Python apps.unset_installed_apps怎麽用?Python apps.unset_installed_apps使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在django.apps.apps的用法示例。


在下文中一共展示了apps.unset_installed_apps方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: enable

# 需要導入模塊: from django.apps import apps [as 別名]
# 或者: from django.apps.apps import unset_installed_apps [as 別名]
def enable(self):
        # Keep this code at the beginning to leave the settings unchanged
        # in case it raises an exception because INSTALLED_APPS is invalid.
        if 'INSTALLED_APPS' in self.options:
            try:
                apps.set_installed_apps(self.options['INSTALLED_APPS'])
            except Exception:
                apps.unset_installed_apps()
                raise
        override = UserSettingsHolder(settings._wrapped)
        for key, new_value in self.options.items():
            setattr(override, key, new_value)
        self.wrapped = settings._wrapped
        settings._wrapped = override
        for key, new_value in self.options.items():
            setting_changed.send(sender=settings._wrapped.__class__,
                                 setting=key, value=new_value, enter=True) 
開發者ID:lanbing510,項目名稱:GTDWeb,代碼行數:19,代碼來源:utils.py

示例2: disable

# 需要導入模塊: from django.apps import apps [as 別名]
# 或者: from django.apps.apps import unset_installed_apps [as 別名]
def disable(self):
        if 'INSTALLED_APPS' in self.options:
            apps.unset_installed_apps()
        settings._wrapped = self.wrapped
        del self.wrapped
        for key in self.options:
            new_value = getattr(settings, key, None)
            setting_changed.send(sender=settings._wrapped.__class__,
                                 setting=key, value=new_value, enter=False) 
開發者ID:lanbing510,項目名稱:GTDWeb,代碼行數:11,代碼來源:utils.py

示例3: tearDown

# 需要導入模塊: from django.apps import apps [as 別名]
# 或者: from django.apps.apps import unset_installed_apps [as 別名]
def tearDown(self):
        apps.unset_installed_apps()

        super().tearDown() 
開發者ID:django-tenants,項目名稱:django-tenants,代碼行數:6,代碼來源:test_settings.py


注:本文中的django.apps.apps.unset_installed_apps方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。