diff options
author | Brett Cannon <bcannon@gmail.com> | 2005-02-13 22:50:04 +0000 |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2005-02-13 22:50:04 +0000 |
commit | 7706c2da14e5b7a54d9b97d340c42497cc557c9f (patch) | |
tree | d9c82fad1b7286a4263bdfbb4c6b122fd5cb7f5c /Doc/api/init.tex | |
parent | 22c0706a584fc0de8648d24caa0520367c304235 (diff) | |
download | cpython-git-7706c2da14e5b7a54d9b97d340c42497cc557c9f.tar.gz |
Update references specifying "Macintosh" to mean OS X semantics and not Mac OS
9.
Applies patch #1095802. Thanks Jack Jansen.
Diffstat (limited to 'Doc/api/init.tex')
-rw-r--r-- | Doc/api/init.tex | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/Doc/api/init.tex b/Doc/api/init.tex index e8d35838c9..96a13d340d 100644 --- a/Doc/api/init.tex +++ b/Doc/api/init.tex @@ -239,9 +239,8 @@ program name (set by \cfunction{Py_SetProgramName()} above) and some 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 Windows, and \character{\e n} (the \ASCII{} - newline character) on Macintosh. The returned string points into + character. The delimiter character is \character{:} on \UNIX and Mac OS X, + \character{;} on Windows. The returned string points into static storage; the caller should not modify its value. The value is available to Python code as the list \code{sys.path}\withsubitem{(in module sys)}{\ttindex{path}}, which @@ -272,7 +271,7 @@ this is formed from the ``official'' name of the operating system, converted to lower case, followed by the major revision number; e.g., for Solaris 2.x, which is also known as SunOS 5.x, the value - is \code{'sunos5'}. On Macintosh, it is \code{'mac'}. On Windows, + is \code{'sunos5'}. On Mac OS X, it is \code{'darwin'}. On Windows, it is \code{'win'}. The returned string points into static storage; the caller should not modify its value. The value is available to Python code as \code{sys.platform}. |