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: Typo in bytes.join/bytearray.join documentation
Type: enhancement Stage: resolved
Components: Documentation Versions: Python 3.5
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: docs@python, python-dev, r.david.murray, vaultah
Priority: normal Keywords: patch

Created on 2015-05-17 07:59 by vaultah, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
bytes_join.diff vaultah, 2015-05-17 07:59 review
Messages (3)
msg243389 - (view) Author: Dmitry Kazakov (vaultah) * Date: 2015-05-17 07:59
This

    if there are any values in iterable that are note bytes-like objects

should be

    if there are any values in iterable that are not bytes-like objects

Here's a micropatch...
msg243400 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2015-05-17 14:17
New changeset ba271f116f94 by R David Murray in branch '3.4':
#24216: fix typo
https://hg.python.org/cpython/rev/ba271f116f94

New changeset 91ac3040a28d by R David Murray in branch 'default':
Merge: #24216: fix typo
https://hg.python.org/cpython/rev/91ac3040a28d
msg243401 - (view) Author: R. David Murray (r.david.murray) * (Python committer) Date: 2015-05-17 14:18
Thanks, Dmitry.
History
Date User Action Args
2022-04-11 14:58:17adminsetgithub: 68404
2015-05-17 14:18:21r.david.murraysetstatus: open -> closed

nosy: + r.david.murray
messages: + msg243401

resolution: fixed
stage: resolved
2015-05-17 14:17:47python-devsetnosy: + python-dev
messages: + msg243400
2015-05-17 07:59:48vaultahcreate