2005-07-18 14:30:26 +08:00
|
|
|
# This module is DEPRECATED!
|
|
|
|
#
|
|
|
|
# You should no longer be pointing your mod_python configuration
|
|
|
|
# at "django.core.handler".
|
|
|
|
#
|
|
|
|
# Use "django.core.handlers.modpython" instead.
|
|
|
|
|
|
|
|
from django.core.handlers.modpython import ModPythonHandler
|
2005-07-13 09:25:57 +08:00
|
|
|
|
|
|
|
def handler(req):
|
2005-07-18 14:10:00 +08:00
|
|
|
return ModPythonHandler()(req)
|