Syntax:
PythonConnectionHandler handler
Context:
server config
Module:
mod_python.c
Specifies that the connection should be handled with handler connection handler. Handler will be passed a single argument - the connection object.
Handler is a module name optionally followed ::
and a
callable object name. If callable object name is omitted, it will
default to "connectionhandler".
The module can be a full module name (package dot notation is
accepted) or an absolute path to a module code file. The module is loaded
using the mod_python module importer as implemented by the
apache.import_module()
function. Reference should be made to the
documentation of that function for further details of how module importing
is managed.