diff options
author | Georg Brandl <georg@python.org> | 2008-11-24 19:56:47 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-11-24 19:56:47 (GMT) |
commit | 623429132eb2b7ffb797ca2a3408424d50659d70 (patch) | |
tree | 1e091e0864d8ad4f5d90b4f9515bbc1a59197e6f | |
parent | df9bcf119637a25ce0314fc0dbdd9204b630d783 (diff) | |
download | cpython-623429132eb2b7ffb797ca2a3408424d50659d70.zip cpython-623429132eb2b7ffb797ca2a3408424d50659d70.tar.gz cpython-623429132eb2b7ffb797ca2a3408424d50659d70.tar.bz2 |
#4404: make clear what "path" is.
-rw-r--r-- | Doc/library/os.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst index 14784fa..1cb450b 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -933,10 +933,10 @@ Files and Directories .. function:: listdir(path) - Return a list containing the names of the entries in the directory. The list is - in arbitrary order. It does not include the special entries ``'.'`` and - ``'..'`` even if they are present in the directory. Availability: - Unix, Windows. + Return a list containing the names of the entries in the directory given by + *path*. The list is in arbitrary order. It does not include the special + entries ``'.'`` and ``'..'`` even if they are present in the + directory. Availability: Unix, Windows. .. versionchanged:: 2.3 On Windows NT/2k/XP and Unix, if *path* is a Unicode object, the result will be |