I agree with Deron's summary of your summary. :)
If we make this change (and that is a +1 from me) I suggest the
following path, assuming that it is possible to control this behaviour
with a PythonOption flag:
1. mp 3.3 - New behaviour is off by default, but can be turned on using
a PythonOp
I'll post more later when I have a chance to check a few things, but
I am
going to backtrack a bit. How far I don't know yet.
In short for now, mod_perl has a a concept called stacked handlers. You
have stacked handlers when you list more than one handler with the
handler directive on the same
I just noticed that "write" is declared twice in request_methods[] .
What's up with that??
src/requestobject.c
static PyMethodDef request_methods[] = {
...
... line 1075
{"write", (PyCFunction) req_write, METH_VARARGS},
...
... line 1087
{"write", (PyCFunction) r
On 19/02/2006, at 9:35 AM, Jim Gallacher wrote:
I just noticed that "write" is declared twice in request_methods
[] . What's up with that??
src/requestobject.c
static PyMethodDef request_methods[] = {
...
... line 1075
{"write", (PyCFunction) req_write, METH_VARARGS