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
Notes to self for when I start working on Python 3.14 on Windows 7.
Test the pathlib.Path.copy() method introduced in python/cpython#119058 and modified in python/cpython@f09d184. It uses CopyFile2(), which is not available on Windows 7, but it appears to have a fallback when it's not available. I think this method will work fine on Windows 7, but I should test it.
Update patches to account for python/cpython@fac5e7a, which raises the minimum supported version to Windows 10. If the UCRT component is removed in a future change, then add it back.
The text was updated successfully, but these errors were encountered:
Notes to self for when I start working on Python 3.14 on Windows 7.
Test the
pathlib.Path.copy()
method introduced in python/cpython#119058 and modified in python/cpython@f09d184. It usesCopyFile2()
, which is not available on Windows 7, but it appears to have a fallback when it's not available. I think this method will work fine on Windows 7, but I should test it.Update patches to account for python/cpython@fac5e7a, which raises the minimum supported version to Windows 10. If the UCRT component is removed in a future change, then add it back.
The text was updated successfully, but these errors were encountered: