[Zope] How to set a REQUEST variable inside a PythonMethod?

Juan Carlos Coruņa jcoruna@umd.es
Tue, 9 Jan 2001 15:48:27 +0100


Hello all!

I have another question related with PythonMethod. This time I tried:

REQUEST.update({'NoRows': 4})

and I tried:

REQUEST['NoRows'] = 4

and I tried:

REQUEST.set('NoRows', 4)

but without success.
(I passed the REQUEST object in the parameter list.)

Anybody has set a REQUEST variable from inside a PythonMethod?