Put listdir default argument into declaration.

This commit is contained in:
Martin v. Löwis 2010-07-24 10:09:11 +00:00
parent 803ef8a694
commit 9c71f90329
1 changed files with 2 additions and 2 deletions

View File

@ -1049,10 +1049,10 @@ Files and Directories
Availability: Unix.
.. function:: listdir([path])
.. function:: listdir(path='.')
Return a list containing the names of the entries in the directory given by
*path* (default: '.'). The list is in arbitrary order. It does not include the special
*path* (default: ``'.'``). The list is in arbitrary order. It does not include the special
entries ``'.'`` and ``'..'`` even if they are present in the directory.
This function can be called with a bytes or string argument, and returns