]> granicus.if.org Git - python/commitdiff
Issue #22413: Document newline effect on StringIO initializer and getvalue
authorMartin Panter <vadmium+py@gmail.com>
Sat, 10 Oct 2015 03:01:20 +0000 (03:01 +0000)
committerMartin Panter <vadmium+py@gmail.com>
Sat, 10 Oct 2015 03:01:20 +0000 (03:01 +0000)
Also add to comment in the C code.

Doc/library/io.rst
Modules/_io/_iomodule.h

index 9b12045ee708adc2f51e4c1bf9db0d51e67a80e5..592bc484ad12e166f04d996679e47f7025b019bc 100644 (file)
@@ -864,10 +864,16 @@ Text I/O
    An in-memory stream for text I/O.  The text buffer is discarded when the
    :meth:`~IOBase.close` method is called.
 
-   The initial value of the buffer (an empty string by default) can be set by
-   providing *initial_value*.  The *newline* argument works like that of
-   :class:`TextIOWrapper`.  The default is to consider only ``\n`` characters
-   as end of lines and to do no newline translation.
+   The initial value of the buffer can be set by providing *initial_value*.
+   If newline translation is enabled, newlines will be encoded as if by
+   :meth:`~TextIOBase.write`.  The stream is positioned at the start of
+   the buffer.
+
+   The *newline* argument works like that of :class:`TextIOWrapper`.
+   The default is to consider only ``\n`` characters as ends of lines and
+   to do no newline translation.  If *newline* is set to ``None``,
+   newlines are written as ``\n`` on all platforms, but universal
+   newline decoding is still performed when reading.
 
    :class:`StringIO` provides this method in addition to those from
    :class:`TextIOBase` and its parents:
@@ -875,6 +881,8 @@ Text I/O
    .. method:: getvalue()
 
       Return a ``str`` containing the entire contents of the buffer.
+      Newlines are decoded as if by :meth:`~TextIOBase.read`, although
+      the stream position is not changed.
 
    Example usage::
 
index 8927864e8c002d2a2593287beb362a79c55e4898..140f2608ce5daa4d7179d4eee54e52cb3d6cde19 100644 (file)
@@ -52,7 +52,12 @@ extern PyObject *_PyIncrementalNewlineDecoder_decode(
    which can be safely put aside until another search.
 
    NOTE: for performance reasons, `end` must point to a NUL character ('\0').
-   Otherwise, the function will scan further and return garbage. */
+   Otherwise, the function will scan further and return garbage.
+
+   There are three modes, in order of priority:
+   * translated: Only find \n (assume newlines already translated)
+   * universal: Use universal newlines algorithm
+   * Otherwise, the line ending is specified by readnl, a str object */
 extern Py_ssize_t _PyIO_find_line_ending(
     int translated, int universal, PyObject *readnl,
     int kind, char *start, char *end, Py_ssize_t *consumed);