diff options
author | Martin Panter <vadmium+py@gmail.com> | 2016-05-28 00:41:57 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2016-05-28 00:41:57 (GMT) |
commit | 6bb91f3b6e51352f91bcf785d3f6fe160ed2cd85 (patch) | |
tree | 0f97c3f8b3fac65680e880ec870796138af78faf /Modules/_io/iobase.c | |
parent | fc36e66af46957a65b12ab0087027727f8555aed (diff) | |
download | cpython-6bb91f3b6e51352f91bcf785d3f6fe160ed2cd85.zip cpython-6bb91f3b6e51352f91bcf785d3f6fe160ed2cd85.tar.gz cpython-6bb91f3b6e51352f91bcf785d3f6fe160ed2cd85.tar.bz2 |
Issue #20699: Document that “io” methods accept bytes-like objects
This matches the usage of ZipFile and BufferedWriter. This still requires
return values to be bytes() objects.
Also document and test that the write() methods should only access their
argument before they return.
Diffstat (limited to 'Modules/_io/iobase.c')
-rw-r--r-- | Modules/_io/iobase.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Modules/_io/iobase.c b/Modules/_io/iobase.c index 090891d..212b0dd 100644 --- a/Modules/_io/iobase.c +++ b/Modules/_io/iobase.c @@ -53,8 +53,9 @@ PyDoc_STRVAR(iobase_doc, "called.\n" "\n" "The basic type used for binary data read from or written to a file is\n" - "bytes. bytearrays are accepted too, and in some cases (such as\n" - "readinto) needed. Text I/O classes work with str data.\n" + "bytes. Other bytes-like objects are accepted as method arguments too.\n" + "In some cases (such as readinto), a writable object is required. Text\n" + "I/O classes work with str data.\n" "\n" "Note that calling any method (except additional calls to close(),\n" "which are ignored) on a closed stream should raise a ValueError.\n" |