I was looking at the Django source code on GitHub (specifically the django.conf module) and I understand from this post that you should never import the global_settings module itself, but rather just:
from django.conf import settings
So I know this works and all that, but as someone who is getting used to looking at the source code to understand how the some of the "under the hood" stuff works for Django, I'd like to get more detail on how I can import "settings" when there is no settings.py in the django/conf directory.
I'm assuming that this is a django built-in where you "from django.conf import settings" and it's intercepted by the django engine and the correct settings module is built/etc. then passed along. Is this the case, or is there something else happening here that I'm missing?