django.conf.__path__

Here are the examples of the python api django.conf.__path__ taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Examples 7

3 Source : django.py
with MIT License
from kiwicom

def load_submodules():
    """django.conf contains subpackages, that should be loaded upfront to access them via __getattribute__."""
    for _, name, _ in pkgutil.walk_packages(conf.__path__):
        importlib.import_module("django.conf." + name)


@attr.s(slots=True)