79781259

Date: 2025-10-02 20:05:18
Score: 0.5
Natty:
Report link

I was looking at some sample code here: https://github.com/pythonnet/pythonnet/issues/623

It looks like you need to take the global interpreter lock before you call such stuff:

using (Py.GIL())
{
    // do the work inside here and it all works
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: Bryce Wagner