]> granicus.if.org Git - python/commitdiff
Put listdir default argument into declaration.
authorMartin v. Löwis <martin@v.loewis.de>
Sat, 24 Jul 2010 10:09:11 +0000 (10:09 +0000)
committerMartin v. Löwis <martin@v.loewis.de>
Sat, 24 Jul 2010 10:09:11 +0000 (10:09 +0000)
Doc/library/os.rst

index a4dec4cd772f2088fe2ac4e53520c4b2ce2a958d..3e13edd4bba9d3f50dfcd18f6af43f5f050eb82a 100644 (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