Open
Description
Re: https://discuss.python.org/t/pep-773-a-python-installation-manager-for-windows/77900/160
pip/src/pip/_internal/commands/install.py
Lines 777 to 791 in 24f4600
try:
Path('a' * 300 + '.txt').touch()
except OSError as e:
exc = e
This gives exc as OSError(22, 'Invalid argument')
, where exc.errno == errno.EINVAL
, rather than ENOENT
.
Python 3.13.2; Windows 11
A