Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Doc/library/os.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3869,9 +3869,9 @@ features:
.. versionadded:: 3.3


.. function:: symlink(src, dst, target_is_directory=False, *, dir_fd=None)
.. function:: symlink(target, link_name, target_is_directory=False, *, dir_fd=None)

Create a symbolic link pointing to *src* named *dst*.
Create a symbolic link pointing to *target* named *link_name*.

On Windows, a symlink represents either a file or a directory, and does not
morph to the target dynamically. If the target is present, the type of the
Expand Down
Loading