give os.symlink and os.link() better parameter names #5564

This commit is contained in:
Benjamin Peterson 2009-03-28 19:16:10 +00:00
parent a31aa45fbf
commit 0e9285845e
2 changed files with 7 additions and 4 deletions

View File

@ -924,9 +924,10 @@ Files and Directories
.. versionadded:: 2.3
.. function:: link(src, dst)
.. function:: link(source, link_name)
Create a hard link pointing to *src* named *dst*. Availability: Unix.
Create a hard link pointing to *source* named *link_name*. Availability:
Unix.
.. function:: listdir(path)
@ -1246,9 +1247,10 @@ Files and Directories
Added access to values as attributes of the returned object.
.. function:: symlink(src, dst)
.. function:: symlink(source, link_name)
Create a symbolic link pointing to *src* named *dst*. Availability: Unix.
Create a symbolic link pointing to *source* named *link_name*. Availability:
Unix.
.. function:: tempnam([dir[, prefix]])

View File

@ -243,6 +243,7 @@ does an index lookup using :func:`__getitem__`.
Some simple format string examples::
"First, thou shalt count to {0}" # References first positional argument
"Bring me a {}" # Implicitly references the first positional argument
"My quest is {name}" # References keyword argument 'name'
"Weight in tons {0.weight}" # 'weight' attribute of first positional arg
"Units destroyed: {players[0]}" # First element of keyword argument 'players'.