Re: Executing script with embedded python

2006-01-26 Thread Andrew Ayre
"Farshid Lashkari" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > > The problem is that PyObject_CallObject always returns NULL. Is this the > > correct return value for simply executing a script, as there is no function > > return value involved? > > The documentation for PyObject_

Re: Executing script with embedded python

2006-01-26 Thread Andrew Ayre
"Farshid Lashkari" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > > The problem is that PyObject_CallObject always returns NULL. Is this the > > correct return value for simply executing a script, as there is no function > > return value involved? > > The documentation for PyObject_

Re: Executing script with embedded python

2006-01-26 Thread Andrew Ayre
"Farshid Lashkari" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > > The problem is that PyObject_CallObject always returns NULL. Is this the > > correct return value for simply executing a script, as there is no function > > return value involved? > > The documentation for PyObject_

Re: Executing script with embedded python

2006-01-25 Thread Farshid Lashkari
> The problem is that PyObject_CallObject always returns NULL. Is this the > correct return value for simply executing a script, as there is no function > return value involved? The documentation for PyObject_CallObject states the following: "Returns the result of the call on success, or NULL on