]> granicus.if.org Git - python/commitdiff
remove the long obsolete mention of universal newlines mode only being
authorGregory P. Smith <greg@krypto.org>
Thu, 21 Mar 2013 01:32:03 +0000 (18:32 -0700)
committerGregory P. Smith <greg@krypto.org>
Thu, 21 Mar 2013 01:32:03 +0000 (18:32 -0700)
available when configured at compile time.

Doc/library/subprocess.rst
Lib/subprocess.py

index b4adc02c0b456d661e5fc2d12482888c5ef8c7a7..1c8aafd46cc54ce02105a20145a4b40b66b8ee3d 100644 (file)
@@ -238,11 +238,9 @@ default values. The arguments that are most commonly needed are:
 
    .. note::
 
-      The *universal_newlines* feature is supported only if Python is built
-      with universal newline support (the default).  Also, the newlines
-      attribute of the file objects :attr:`Popen.stdin`, :attr:`Popen.stdout`
-      and :attr:`Popen.stderr` are not updated by the
-      :meth:`Popen.communicate` method.
+      The newlines attribute of the file objects :attr:`Popen.stdin`,
+      :attr:`Popen.stdout` and :attr:`Popen.stderr` are not updated by
+      the :meth:`Popen.communicate` method.
 
    If *shell* is ``True``, the specified command will be executed through
    the shell.  This can be useful if you are using Python primarily for the
index 1a21455a9b35b635aab23631ff42543daf849b71..7cfe5df30d7f8f5f96e56fe658177d9f3785b007 100644 (file)
@@ -108,10 +108,9 @@ If universal_newlines is true, the file objects stdout and stderr are
 opened as a text files, but lines may be terminated by any of '\n',
 the Unix 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.  Note: This feature is only
-available if Python is built with universal newline support (the
-default).  Also, the newlines attribute of the file objects stdout,
-stdin and stderr are not updated by the communicate() method.
+are seen as '\n' by the Python program.  Also, the newlines attribute
+of the file objects stdout, stdin and stderr are not updated by the
+communicate() method.
 
 The startupinfo and creationflags, if given, will be passed to the
 underlying CreateProcess() function.  They can specify things such as