]> granicus.if.org Git - python/commitdiff
Change the markup a bit more; the parameter was not marked as \var in the
authorFred Drake <fdrake@acm.org>
Wed, 7 Aug 2002 12:39:33 +0000 (12:39 +0000)
committerFred Drake <fdrake@acm.org>
Wed, 7 Aug 2002 12:39:33 +0000 (12:39 +0000)
sample code, and the note was marked as a logical thing.

Doc/lib/libposixpath.tex

index be22827fa4ab0009e389742868a6f68d598ce9af..d0bb73b483515ea9b6a07334eb0c1e5cc0765d86 100644 (file)
@@ -215,8 +215,12 @@ avoid visiting certain parts of the tree.  (The object referred to by
 \var{names} must be modified in place, using \keyword{del} or slice
 assignment.)
 
-Note that symbolic links to directories are not treated as subdirectories,
-and that \function{walk} therefore will not visit them. To visit linked
-directories you must identify them with \code{os.path.islink(file)} and
-\code{os.path.isdir(file)}, and invoke \function{walk()} as necessary.
+\begin{notice}
+Symbolic links to directories are not treated as subdirectories, and
+that \function{walk()} therefore will not visit them. To visit linked
+directories you must identify them with
+\code{os.path.islink(\var{file})} and
+\code{os.path.isdir(\var{file})}, and invoke \function{walk()} as
+necessary.
+\end{notice}
 \end{funcdesc}