1
0
mirror of https://github.com/django/django.git synced 2025-10-27 07:36:08 +00:00

Removed ENABLE_PSYCO setting. If you still need to use this, write custom middleware that activates psyco for you.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@3877 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty
2006-09-28 02:31:05 +00:00
parent beeb719c12
commit f638234932
4 changed files with 0 additions and 21 deletions

View File

@@ -174,10 +174,6 @@ class WSGIHandler(BaseHandler):
def __call__(self, environ, start_response):
from django.conf import settings
if settings.ENABLE_PSYCO:
import psyco
psyco.profile()
# Set up middleware if needed. We couldn't do this earlier, because
# settings weren't available.
if self._request_middleware is None: