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 absolute-paths_glob guard now works on Python 3.11. The 2.34.0 fix
wrapped base.glob(pattern) in a try/except, but Path.glob is lazy on
Python 3.11 (it raises NotImplementedError during iteration, not at the
call), so an absolute glob still crashed there. Materialize the matches with list(...) inside the guard, mirroring workspace.py, so the exception is
caught on every supported Python version.