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
The sys.setrecursionlimit(3000) call in api/__init__.py can cause stack overflows on Windows, as this limit can exceed the default Windows stack size under some conditions.
Either this should be done on a more targeted section of code and reset afterwards, or another way to avoid hitting the default recursion limit should be used. I'm not sure where this is actually needed for jedi, though.