]> granicus.if.org Git - python/commitdiff
Remove mentionings of DOS.
authorMartin v. Löwis <martin@v.loewis.de>
Thu, 10 Oct 2002 18:24:54 +0000 (18:24 +0000)
committerMartin v. Löwis <martin@v.loewis.de>
Thu, 10 Oct 2002 18:24:54 +0000 (18:24 +0000)
Doc/api/init.tex
Doc/doc/doc.tex
Doc/lib/libos.tex
Doc/lib/libundoc.tex
Doc/lib/libuu.tex
Doc/ref/ref2.tex
Doc/tut/tut.tex

index 712ca5432baae80a9aad496e67b57ec84317cd2c..ba16b3c6dbaa10d7ad748b0f47c808b34e3ba698 100644 (file)
   environment variables.  The returned string consists of a series of
   directory names separated by a platform dependent delimiter
   character.  The delimiter character is \character{:} on \UNIX,
-  \character{;} on DOS/Windows, and \character{\e n} (the \ASCII{}
+  \character{;} on Windows, and \character{\e n} (the \ASCII{}
   newline character) on Macintosh.  The returned string points into
   static storage; the caller should not modify its value.  The value
   is available to Python code as the list
index b88350f90505f4150f17456363b7cb1d7ec92a9f..22f9d13dab47fcbfd9f7e97da561cb938bafb556 100644 (file)
@@ -927,8 +927,8 @@ This \UNIX\ is also followed by a space.
     \begin{macrodesc}{program}{\p{name}}
       The name of an executable program.  This may differ from the
       file name for the executable for some platforms.  In particular, 
-      the \file{.exe} (or other) extension should be omitted for DOS
-      and Windows programs.
+      the \file{.exe} (or other) extension should be omitted for 
+      Windows programs.
     \end{macrodesc}
 
     \begin{macrodesc}{programopt}{\p{option}}
index 45354bc639f9a276e81f0c4ec0ea994960ec26cf..17b7c67db0413ba429dd74091edccb21ca377303 100644 (file)
@@ -64,7 +64,7 @@ function.
 \begin{datadesc}{name}
 The name of the operating system dependent module imported.  The
 following names have currently been registered: \code{'posix'},
-\code{'nt'}, \code{'dos'}, \code{'mac'}, \code{'os2'}, \code{'ce'},
+\code{'nt'}, \code{'mac'}, \code{'os2'}, \code{'ce'},
 \code{'java'}, \code{'riscos'}.
 \end{datadesc}
 
@@ -1444,14 +1444,14 @@ parse or concatenate pathnames --- use \function{os.path.split()} and
 \begin{datadesc}{altsep}
 An alternative character used by the operating system to separate pathname
 components, or \code{None} if only one separator character exists.  This is
-set to \character{/} on DOS and Windows systems where \code{sep} is a
+set to \character{/} on Windows systems where \code{sep} is a
 backslash.
 \end{datadesc}
 
 \begin{datadesc}{pathsep}
 The character conventionally used by the operating system to separate
 search patch components (as in \envvar{PATH}), such as \character{:} for
-\POSIX{} or \character{;} for DOS and Windows.
+\POSIX{} or \character{;} for Windows.
 \end{datadesc}
 
 \begin{datadesc}{defpath}
@@ -1464,5 +1464,5 @@ key.
 The string used to separate (or, rather, terminate) lines on the
 current platform.  This may be a single character, such as \code{'\e
 n'} for \POSIX{} or \code{'\e r'} for Mac OS, or multiple characters,
-for example, \code{'\e r\e n'} for DOS and Windows.
+for example, \code{'\e r\e n'} for Windows.
 \end{datadesc}
index f854d7b6236693ce14b2eb58d3124c1ec4973be2..71496d2ffc4c3e59842499d20a457d327a50caba 100644 (file)
@@ -46,9 +46,6 @@ and are not documented beyond this mention.  There's little need to
 document these.
 
 \begin{description}
-\item[\module{dospath}]
---- Implementation of \module{os.path} on MS-DOS.
-
 \item[\module{ntpath}]
 --- Implementation on \module{os.path} on Win32, Win64, WinCE, and
 OS/2 platforms.
index e938c4faebd64677dd21a33dde7796288d317aab..53354f23e3f0202d94bd2c761b8784ddbabd3e71 100644 (file)
@@ -14,7 +14,7 @@ is also accepted, and the corresponding file will be opened for
 reading and writing; the pathname \code{'-'} is understood to mean the
 standard input or output.  However, this interface is deprecated; it's
 better for the caller to open the file itself, and be sure that, when
-required, the mode is \code{'rb'} or \code{'wb'} on Windows or DOS.
+required, the mode is \code{'rb'} or \code{'wb'} on Windows.
 
 This code was contributed by Lance Ellinghouse, and modified by Jack
 Jansen.
index b2ffa6f4802839d6a9e4985157459f6d1a06d4e6..6fba7f444ae397fe66872eac7c91013e39926147 100644 (file)
@@ -56,7 +56,7 @@ by following the explicit or implicit \emph{line joining} rules.
 
 A physical line ends in whatever the current platform's convention is
 for terminating lines.  On \UNIX, this is the \ASCII{} LF (linefeed)
-character.  On DOS/Windows, it is the \ASCII{} sequence CR LF (return
+character.  On Windows, it is the \ASCII{} sequence CR LF (return
 followed by linefeed).  On Macintosh, it is the \ASCII{} CR (return)
 character.
 
index 512dd6e64be0bf8daf7316ef6d01ccc289a642f1..41d7e33478814b3e733ea86b4a2628946fa0a772 100644 (file)
@@ -176,7 +176,7 @@ your local Python guru or system administrator.  (E.g.,
 \file{/usr/local/python} is a popular alternative location.)
 
 Typing an end-of-file character (\kbd{Control-D} on \UNIX,
-\kbd{Control-Z} on DOS or Windows) at the primary prompt causes the
+\kbd{Control-Z} on Windows) at the primary prompt causes the
 interpreter to exit with a zero exit status.  If that doesn't work,
 you can exit the interpreter by typing the following commands:
 \samp{import sys; sys.exit()}.