]> granicus.if.org Git - python/commitdiff
Note regarding + mode truncation applies to both text and binary mode (#11314)
authorAndre Delfino <adelfino@gmail.com>
Tue, 10 Sep 2019 13:04:22 +0000 (10:04 -0300)
committerDino Viehland <dinoviehland@gmail.com>
Tue, 10 Sep 2019 13:04:22 +0000 (14:04 +0100)
* Improve doc on open's mode +

* Improve wording

* Address comment from RĂ©mi

Doc/library/functions.rst

index ce026ebb4b0f56a1b9b31b1eb04f756bde30acaa..98a55c61eff2b2155bdb5c8aefa26ef7766cc030 100644 (file)
@@ -1070,12 +1070,12 @@ are always available.  They are listed here in alphabetical order.
    ``'a'``   open for writing, appending to the end of the file if it exists
    ``'b'``   binary mode
    ``'t'``   text mode (default)
-   ``'+'``   open a disk file for updating (reading and writing)
+   ``'+'``   open for updating (reading and writing)
    ========= ===============================================================
 
    The default mode is ``'r'`` (open for reading text, synonym of ``'rt'``).
-   For binary read-write access, the mode ``'w+b'`` opens and truncates the file
-   to 0 bytes.  ``'r+b'`` opens the file without truncation.
+   Modes ``'w+'`` and ``'w+b'`` opens and truncates the file.  Modes ``'r+'``
+   and ``'r+b'`` opens the file with no truncation.
 
    As mentioned in the :ref:`io-overview`, Python distinguishes between binary
    and text I/O.  Files opened in binary mode (including ``'b'`` in the *mode*