This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Raw I/O writelines() broken for non-blocking I/O
Type: Stage: resolved
Components: IO Versions: Python 3.6, Python 3.5, Python 2.7
process
Status: closed Resolution: duplicate
Dependencies: Superseder: The io module doesn't support non-blocking files
View: 13322
Assigned To: Nosy List: jstasiak, martin.panter, pitrou, raylu, vstinner
Priority: normal Keywords: patch

Created on 2016-02-05 08:44 by vstinner, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
writelines-doc.patch martin.panter, 2016-06-20 13:30 review
Messages (8)
msg259640 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2016-02-05 08:44
Copy of Antoine Pitrou's email (sent in 2012 ;-):
https://mail.python.org/pipermail/python-dev/2012-August/121396.html

Hello,

I was considering a FileIO.writelines() implementation based on
writev() and I noticed that the current RawIO.writelines()
implementation is broken: RawIO.write() can return a partial write but
writelines() ignores the result and happily proceeds to the next
iterator item (and None is returned at the end).

(it's probably broken with non-blocking streams too, for the same
reason)

In the spirit of RawIO.write(), I think RawIO.writelines() could return
the number of bytes written (allowing for partial writes).

Regards

Antoine.

-- 
Software development and contracting: http://pro.pitrou.net
msg259641 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2016-02-05 08:51
"(it's probably broken with non-blocking streams too, for the same
reason)"

Yes it is :-)

We hitted this issue on eventlet when I changed the socket.send() method in eventlet 0.18 to stop sending data on partial write, whereas eventlet < 0.18 used a loop to ensure that all bytes are written.

The side effect of my change is that (indirectly) socket.makefile().writelines() may also use partial write if the underlying send() only writes partially data.

The problem is that writelines() has *no* result, so the caller cannot be aware of the partial write and data is lost...

eventlet:

* send() change: https://github.com/eventlet/eventlet/issues/274
* writelines() bug: https://github.com/eventlet/eventlet/issues/295


"In the spirit of RawIO.write(), I think RawIO.writelines() could return
the number of bytes written (allowing for partial writes)."

I don't know yet what is the best option for eventlet, but we should probaly enhance the Python stdlib io module to return something on writelines() and *document* the behaviour on partial write.

The problem writelines() API is that writelines() not only takes a single text/bytes string, but a *list* of text/bytes strings.

Another option is to modify to retry on partial write to ensure that all data is written. If the underlying write() method returns None (blocking I/O error), we must raise an error. It doesn't make sense to retry writing on a non-blocking I/O error.

In this case, we must document that writelines() *must not* be used on non-blocking I/O (ex: non-blocking socket, pipe, whatever).
msg259655 - (view) Author: Martin Panter (martin.panter) * (Python committer) Date: 2016-02-05 12:05
Is deprecating RawIOBase.writelines() an option, and only recommending BufferedIOBase.writelines() and TextIOBase.writelines()?

Otherwise, I think it would make most sense to keep retrying until all the data is written. This mirrors how I understand readline() and readall() work (keeps reading until it gets as much as necessary).

For non-blocking mode, readline() does not support that (see Issue 13858). It does not make much sense to me to have writelines() support non-blocking mode either.
msg259656 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2016-02-05 12:13
> Is deprecating RawIOBase.writelines() an option, and only recommending BufferedIOBase.writelines() and TextIOBase.writelines()?

IMHO the problem is the same for other classes.
msg259690 - (view) Author: Martin Panter (martin.panter) * (Python committer) Date: 2016-02-05 21:01
For BufferedIOBase, the documentation says write() will not return a short number of bytes, so I don’t see how writelines() is a problem there. For TextIOBase, the documentation is not so clear <https://docs.python.org/release/3.4.3/library/io.html#io.TextIOBase.write>, but I understand the standard library implementations do not do short writes.
msg268413 - (view) Author: Martin Panter (martin.panter) * (Python committer) Date: 2016-06-13 02:21
Victor, why did you change the title to specify non-blocking mode? I think blocking mode can also be handled at the same time.

I propose:

1. In existing versions (2.7, 3.5): Document that it is undefined what IOBase.writelines() will do if a write() call does a partial write, returns None, or encounters a blocking error. Explicitly document that BufferedIOBase.writelines() and TextIOBase.writelines() will completely write all the data passed, or raise an exception. Document that BlockingIOError.characters_written is undefined even for BufferedIOBase.writelines().

2. Commit my Issue 26721 change to socketserver, so that StreamRequestHandler.wfile implements BufferedIOBase instead of RawIOBase.

3. In a new version (3.6): Deprecate IOBase.writelines() and thus RawIOBase.writelines(), in favour of either using BufferedIOBase, or manually calling write(). Emit a DeprecationWarning, but add BufferedIOBase and TextIOBase implementations that do not emit the warning.

BufferedIOBase.writelines() could be fixed to report the correct BlockingIOError.characters_written value, but that could be handled as a separate bug if anyone cares.
msg268900 - (view) Author: Martin Panter (martin.panter) * (Python committer) Date: 2016-06-20 13:30
Here is a patch documenting that RawIOBase.writelines() is undefined for partial writes and blocking errors, as mentioned in (1) above.

The alternative of requiring write() to be retried would IMO be unfair to existing writelines() implementations. It also seems out of place considering we don’t even have a RawIOBase.writeexactly() type of method.
msg354338 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2019-10-10 08:27
I close this issue as duplicate of bpo-13322 which is older and has a longer history.
History
Date User Action Args
2022-04-11 14:58:27adminsetgithub: 70480
2019-10-10 08:27:39vstinnersetstatus: open -> closed
superseder: The io module doesn't support non-blocking files
messages: + msg354338

resolution: duplicate
stage: resolved
2016-07-05 04:04:18raylusetnosy: + raylu
2016-06-20 13:30:22martin.pantersetfiles: + writelines-doc.patch
keywords: + patch
messages: + msg268900
2016-06-13 02:21:37martin.pantersetmessages: + msg268413
versions: + Python 2.7
2016-02-11 22:17:09vstinnersettitle: Raw I/O writelines() broken -> Raw I/O writelines() broken for non-blocking I/O
2016-02-05 21:01:04martin.pantersetmessages: + msg259690
2016-02-05 12:13:20vstinnersetmessages: + msg259656
2016-02-05 12:05:50martin.pantersetnosy: + martin.panter
messages: + msg259655
2016-02-05 09:46:20jstasiaksetnosy: + jstasiak
2016-02-05 08:51:55vstinnersetnosy: + pitrou

versions: + Python 3.5
2016-02-05 08:51:44vstinnersetmessages: + msg259641
2016-02-05 08:44:20vstinnercreate