You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the Python API, t appears that ClientXML.ConvertToTraceXML requires you to make sure to keep a reference to the ClientXML object or else you will get a segfault.
child=ClientXML()
parent.GetChild(child, 0)
trace=child.ConvertToTraceXML()
child=None# can trigger GCtrace.IsTagWme() # seg
It would be nice if this just didn't blow up like this, but short of that, it would be good to document this.
The text was updated successfully, but these errors were encountered:
In the Python API, t appears that
ClientXML.ConvertToTraceXML
requires you to make sure to keep a reference to theClientXML
object or else you will get a segfault.It would be nice if this just didn't blow up like this, but short of that, it would be good to document this.
The text was updated successfully, but these errors were encountered: