ronPython.Runtime.PythonFunction to GH library, python grasshopper

Hi there,
I am calling a gh function (intersection Brep|Curve) within Python in GH, and running it in parallel to gain some time in computing.
As result I get the right data tree structure and all but the data are IronPython.Runtime.PythonFunction , how to translate them into GH data again?

many thanks in advance,

Maybe you forgot to do something like this:
gcp.BrepXCurve(Brep,Curve)

Hello,

I don’t know whether this will save you some time but you should be able to build your master list using a list comprehension with masterList = [[x, y0] for y0 in y] replacing lines 17 to 24.

Graham