summaryrefslogtreecommitdiffstats
path: root/Doc/library/subprocess.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-09-13 17:41:16 (GMT)
committerGeorg Brandl <georg@python.org>2008-09-13 17:41:16 (GMT)
commit9af9498c6e59aa9efe0370bcc476307b4c30c06c (patch)
treec8b5dee5200abd38af016b0e13fb93410e1b550b /Doc/library/subprocess.rst
parentf2a2c796e37f888a254d7e2af8e4bc0dc0899530 (diff)
downloadcpython-9af9498c6e59aa9efe0370bcc476307b4c30c06c.zip
cpython-9af9498c6e59aa9efe0370bcc476307b4c30c06c.tar.gz
cpython-9af9498c6e59aa9efe0370bcc476307b4c30c06c.tar.bz2
Remove things specific to the old Macintosh, and spell "Mac OS X" consistently.
Diffstat (limited to 'Doc/library/subprocess.rst')
-rw-r--r--Doc/library/subprocess.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst
index 67ebd8e..b147734 100644
--- a/Doc/library/subprocess.rst
+++ b/Doc/library/subprocess.rst
@@ -104,7 +104,7 @@ This module defines one class called :class:`Popen`:
If *universal_newlines* is :const:`True`, the file objects stdout and stderr are
opened as text files, but lines may be terminated by any of ``'\n'``, the Unix
- end-of-line convention, ``'\r'``, the Macintosh convention or ``'\r\n'``, the
+ end-of-line convention, ``'\r'``, the old Macintosh convention or ``'\r\n'``, the
Windows convention. All of these external representations are seen as ``'\n'``
by the Python program.