This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author serhiy.storchaka
Recipients georg.brandl, kushal.das, larry, serhiy.storchaka, terry.reedy, v+python
Date 2012-09-29.18:10:52
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1348942253.18.0.0248326425973.issue16074@psf.upfronthosting.co.za>
In-reply-to
Content
Same issue for os.link and os.symlink.

>>> import os
>>> os.link('non-existent-name', 'new-name')
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
FileNotFoundError: [Errno 2] No such file or directory: 'new-name'
>>> os.symlink('long-name'*1000, 'new-name')
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
OSError: [Errno 36] File name too long: 'new-name'
History
Date User Action Args
2012-09-29 18:10:53serhiy.storchakasetrecipients: + serhiy.storchaka, georg.brandl, terry.reedy, larry, v+python, kushal.das
2012-09-29 18:10:53serhiy.storchakasetmessageid: <1348942253.18.0.0248326425973.issue16074@psf.upfronthosting.co.za>
2012-09-29 18:10:53serhiy.storchakalinkissue16074 messages
2012-09-29 18:10:52serhiy.storchakacreate