]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
the name of the option is a bit too low-level
authorBenjamin Peterson <benjamin@python.org>
Sun, 20 Mar 2011 17:24:20 +0000 (12:24 -0500)
committerBenjamin Peterson <benjamin@python.org>
Sun, 20 Mar 2011 17:24:20 +0000 (12:24 -0500)
Doc/library/stdtypes.rst

index 77c2da7e662a2e0cadcf121cf080cbda3805ecd9..da5db1d13b5077569ab96eaaab0d6e96174ec5bc 100644 (file)
@@ -2535,14 +2535,14 @@ the particular object.
 
 .. attribute:: file.newlines
 
-   If Python was built with the :option:`--with-universal-newlines` option to
-   :program:`configure` (the default) this read-only attribute exists, and for
-   files opened in universal newline read mode it keeps track of the types of
-   newlines encountered while reading the file. The values it can take are
-   ``'\r'``, ``'\n'``, ``'\r\n'``, ``None`` (unknown, no newlines read yet) or a
-   tuple containing all the newline types seen, to indicate that multiple newline
-   conventions were encountered. For files not opened in universal newline read
-   mode the value of this attribute will be ``None``.
+   If Python was built with universal newlines enabled (the default) this
+   read-only attribute exists, and for files opened in universal newline read
+   mode it keeps track of the types of newlines encountered while reading the
+   file. The values it can take are ``'\r'``, ``'\n'``, ``'\r\n'``, ``None``
+   (unknown, no newlines read yet) or a tuple containing all the newline types
+   seen, to indicate that multiple newline conventions were encountered. For
+   files not opened in universal newline read mode the value of this attribute
+   will be ``None``.
 
 
 .. attribute:: file.softspace