From 4d32e6abc2fe683ecdea719a368ed8a4ce84a699 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Fri, 16 Dec 2011 20:37:12 +0000 Subject: [PATCH] Removed incorrect comment in core/handlers/modpython.py. If it were true, the modpython handler wouldn't be working, because the handler's module imports from django.http, which includes a settings import git-svn-id: http://code.djangoproject.com/svn/django/trunk@17208 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/core/handlers/modpython.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/django/core/handlers/modpython.py b/django/core/handlers/modpython.py index eba9dd39ca..b0b8a0618b 100644 --- a/django/core/handlers/modpython.py +++ b/django/core/handlers/modpython.py @@ -12,11 +12,6 @@ from django.utils.log import getLogger logger = getLogger('django.request') - -# NOTE: do *not* import settings (or any module which eventually imports -# settings) until after ModPythonHandler has been called; otherwise os.environ -# won't be set up correctly (with respect to settings). - class ModPythonRequest(http.HttpRequest): def __init__(self, req): self._req = req