Results 208 comments of Dustin Spicuzza

The UserSettings object implements this sort of cascading configuration retrieval, but you can't control which files it reads from IIRC. Maybe if it were made more general then you could...

I've only been using DefaultAll only for IdentityFile, so making it a special case is fine for my usage. The reason that DefaultAll has the weird getter function is because...

An alternative would be accepting a Config object as the third argument to DefaultAll instead of a function? Then it could remain correct even in the presence of SSH protocol...

Rebased and made the change to use a config object. Unfortunately, UserSettings and Config don't have the same function signatures, so I had to add an internal method to make...

Here's the diagnosis I posted on gitter: > A look at that version of pytorch indicates that they build using pybind11 2.6.2? https://github.com/pytorch/pytorch/tree/v1.10.2/third_party ... I know pybind11 has some guards...

That's unfortunate. I don't have any specific experience using embedded interpreters, so I don't think I can offer any more advice here. I hadn't noticed that you said it worked...

This seems to be a good place to use a memoryview for holding onto the buffer instead of a capsule? #2307 is useful for invalidating the buffer once it has...

Actually, I think I misunderstood the problem, never mind. A memoryview might be useful in some of these cases however.

I don't have time at the moment to fully grok this, can look tonight. ... but I have virtual base class thingies working correctly as far as I can tell....

I've got a potential fix for this in https://github.com/pybind/pybind11/pull/2839, input/feedback welcome!