mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
bpo-21910: Clarify docs for codecs writelines method (GH-31245)
Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>
This commit is contained in:
parent
75d2d945b4
commit
a8c87a239e
1 changed files with 3 additions and 2 deletions
|
@ -697,8 +697,9 @@ compatible with the Python codec registry.
|
|||
|
||||
.. method:: writelines(list)
|
||||
|
||||
Writes the concatenated list of strings to the stream (possibly by reusing
|
||||
the :meth:`write` method). The standard bytes-to-bytes codecs
|
||||
Writes the concatenated iterable of strings to the stream (possibly by reusing
|
||||
the :meth:`write` method). Infinite or
|
||||
very large iterables are not supported. The standard bytes-to-bytes codecs
|
||||
do not support this method.
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue