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, eric.smith, krey, steven.daprano
Date 2021-08-05.12:00:31
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1628164831.71.0.0570542876067.issue44837@roundup.psfhosted.org>
In-reply-to
Content
@eric.smith Fair enough, though the impact would probably be quite low in reality. Nobody seems to pass these args by keyword: https://github.com/search?q=%22os.symlink(src%3D%22&type=Code

@steven.daprano My suggestion was changing the names of the args, not the order

Current
def os.symlink(src, dst):
    ln -s src dst

Changing the names
def os.symlink(dst, src):
    ln -s dst src

Changing the order
def os.symlink(dst, src):
    ln -s src dst

I concede that different unixes have different argnames for ln, it's a bit of a mess. From a CS theory perspective, I think the GNU convention makes more sense.
History
Date User Action Args
2021-08-05 12:00:31kreysetrecipients: + krey, eric.smith, steven.daprano, docs@python
2021-08-05 12:00:31kreysetmessageid: <1628164831.71.0.0570542876067.issue44837@roundup.psfhosted.org>
2021-08-05 12:00:31kreylinkissue44837 messages
2021-08-05 12:00:31kreycreate