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 larry
Recipients dabrahams, docs@python, larry, r.david.murray
Date 2012-08-05.00:54:37
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1344128078.61.0.74577298399.issue15531@psf.upfronthosting.co.za>
In-reply-to
Content
What does the following script print out?

import os

os.chdir('/tmp')
os.symlink('--success--', 'foo')
print("this should print --success-- :")
print(os.readlink('foo'))
os.unlink('foo')
History
Date User Action Args
2012-08-05 00:54:38larrysetrecipients: + larry, r.david.murray, docs@python, dabrahams
2012-08-05 00:54:38larrysetmessageid: <1344128078.61.0.74577298399.issue15531@psf.upfronthosting.co.za>
2012-08-05 00:54:38larrylinkissue15531 messages
2012-08-05 00:54:37larrycreate