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 dabrahams
Recipients dabrahams, docs@python, larry, r.david.murray
Date 2012-08-05.19:02:56
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <m23941cgc4.fsf@pluto.luannocracy.com>
In-reply-to <1344128078.61.0.74577298399.issue15531@psf.upfronthosting.co.za> (Larry Hastings's message of "Sun, 05 Aug 2012 00:54:38 +0000")
Content
on Sat Aug 04 2012, Larry Hastings <report-AT-bugs.python.org> wrote:

> Larry Hastings added the comment:
>
> 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')

--8<---------------cut here---------------start------------->8---
this should print --success-- :
--success--
--8<---------------cut here---------------end--------------->8---

So, I guess I don't know what was causing the symptom I observed.
History
Date User Action Args
2012-08-05 19:02:57dabrahamssetrecipients: + dabrahams, larry, r.david.murray, docs@python
2012-08-05 19:02:57dabrahamslinkissue15531 messages
2012-08-05 19:02:56dabrahamscreate