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 krey
Recipients docs@python, krey
Date 2021-08-05.09:08:14
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1628154494.92.0.350164707154.issue44837@roundup.psfhosted.org>
In-reply-to
Content
From: https://docs.python.org/3/library/os.html

os.symlink(src, dst, target_is_directory=False, *, dir_fd=None)

    Create a symbolic link pointing to `src` named `dst`.

It's a bit like saying

find(needle, haystack)

    Finds `haystack` in `needle`

If you look at the manpage ln, it says
ln [OPTION]... [-T] TARGET LINK_NAME

So os.symlink isn't consistent with ln
History
Date User Action Args
2021-08-05 09:08:14kreysetrecipients: + krey, docs@python
2021-08-05 09:08:14kreysetmessageid: <1628154494.92.0.350164707154.issue44837@roundup.psfhosted.org>
2021-08-05 09:08:14kreylinkissue44837 messages
2021-08-05 09:08:14kreycreate