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) req_write,  METH_VARARGS},
...


Jim

Reply via email to