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 Arfrever, ezio.melotti, georg.brandl, kushal.das, larry, serhiy.storchaka, terry.reedy, v+python
Date 2012-12-29.16:57:06
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1356800226.68.0.884683381706.issue16074@psf.upfronthosting.co.za>
In-reply-to
Content
As I see, now 3.4 behavior differs from 3.3 behavior.

>>> 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: 'non-existent-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: 'long-namelong-namelong-namelong-namelong-namelong-name...
History
Date User Action Args
2012-12-29 16:57:06serhiy.storchakasetrecipients: + serhiy.storchaka, georg.brandl, terry.reedy, larry, ezio.melotti, Arfrever, v+python, kushal.das
2012-12-29 16:57:06serhiy.storchakasetmessageid: <1356800226.68.0.884683381706.issue16074@psf.upfronthosting.co.za>
2012-12-29 16:57:06serhiy.storchakalinkissue16074 messages
2012-12-29 16:57:06serhiy.storchakacreate