6 Sep
2006
6 Sep
'06
10:36 p.m.
On 6 Sep 2006 22:27:14 -0000, cpdm cadlab <cpdm@rediffmail.com> wrote:
context.code(uparam)
code is the id of external method which processes uparam and at the end has statement return mlist this mlist is what I am interested in getting back. I want external method to return me this list to my python script searchuparam.
The external method already returs the list to your python script. Just store the result in a variable: returnedlist = contex.code(uparam) -- Martijn Pieters