]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Match some of the markup changes from the trunk.
authorFred Drake <fdrake@acm.org>
Mon, 31 Mar 2003 16:45:22 +0000 (16:45 +0000)
committerFred Drake <fdrake@acm.org>
Mon, 31 Mar 2003 16:45:22 +0000 (16:45 +0000)
Doc/dist/dist.tex

index 33fa225a7d0249e7574243f732789272bf631dff..9e0cd242a68d9edc1254fd4e62ae7f9e49a99f79 100644 (file)
@@ -295,9 +295,10 @@ mind that the \emph{absence} of a leading slash indicates a relative
 path, the opposite of the MacOS convention with colons).
 
 This, of course, only applies to pathnames given to Distutils functions.
-If you, for example, use standard python functions such as glob.glob
-or os.listdir to specify files, you should be careful to write portable
-code instead of hardcoding path separators:
+If you, for example, use standard Python functions such as
+\function{glob.glob()} or \function{os.listdir()} to specify files,
+you should be careful to write portable code instead of hardcoding
+path separators:
 
 \begin{verbatim}
     glob.glob(os.path.join('mydir', 'subdir', '*.html'))