Re: How mod_python treats apache.OK/apache.DECLINED response from handlers.

2006-02-18 Thread Jim Gallacher
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

Re: How mod_python treats apache.OK/apache.DECLINED response from handlers.

2006-02-18 Thread Graham Dumpleton
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

duplicate method in request_methods[]

2006-02-18 Thread Jim Gallacher
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

What is test_req_get_basic_auth_pw meant to test.

2006-02-18 Thread Graham Dumpleton
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