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 regression tests were failing on Windows because file paths containing
backslashes weren't properly escaped when inserted into Python script strings.
This commit:
- Adds a shared test utility function escape_path_for_python() that converts
backslashes to forward slashes before quoting paths
- Updates the regression tests to use this helper for all file paths
- Refactors test_stdio.py to use the same shared utility
This ensures Windows paths like C:\Users\... are converted to C:/Users/...
which work correctly in Python strings on all platforms.
0 commit comments