Results 348 comments of Dustin Spicuzza
trafficstars

Well. You're probably both right. Maybe we can figure out how to filter out things we don't want to propagate up? All the doc stuff is autogen'ed anyways.

I think try it out, build it locally, and once you're happy with something then PR it and we can take a look.

Bug filed upstream at https://github.com/wpilibsuite/allwpilib/issues/1198

I think pybind11 is trying to take ownership of the reference (~which is actually a C++ local~), I think we would need a proxy of some kind here.

Well, after the function is called, what happens to the python reference to SendableBuilder? Since it's a reference, it's potentially not safe for it to continue to exist?

Actually, that doesn't make sense. Likely what's happening is... * It tries to find an existing python object that references the SendableBuilder * Doesn't find it, so it looks at...

I thought about this some more tonight, and while the behavior I cited before is still what I think is likely happening, I'm no longer surprised by it (though it...