Re: plpython tracebacks - Mailing list pgsql-patches

From P. Scott DeVos
Subject Re: plpython tracebacks
Date
Msg-id 43FCF6DB.1000306@countrysidetechnology.com
Whole thread Raw
In response to Re: plpython tracebacks  ("P. Scott DeVos" <scott@countrysidetechnology.com>)
List pgsql-patches

P. Scott DeVos wrote:
>
>

>
> Are you sure this works: "PyString_AsString(lno)"?  lno is a python
> integer object.  Maybe we want, "PyString_AsString(PyObject_Str(lno))"
>
Wait, this is not the way to do it because PyObject_Str returns a new
reference.  I think you have to assign PyObject_Str(lno) to another
variable so that you can decrement the reference on it.  Unless your
code works as it, in which case, never mind...

Scott

pgsql-patches by date:

Previous
From: "P. Scott DeVos"
Date:
Subject: Re: plpython tracebacks
Next
From: "Jim C. Nasby"
Date:
Subject: Re: Summary table trigger example race condition