[issue33864] collections.abc.ByteString does not register memoryview

2020-07-03 Thread Guido van Rossum
Change by Guido van Rossum : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue33864] collections.abc.ByteString does not register memoryview

2020-07-03 Thread miss-islington
miss-islington added the comment: New changeset 6857ebefc048e316f948091946d337b5ada807a4 by Miss Islington (bot) in branch '3.8': bpo-33864: Clarify the docs for typing.ByteString (GH-21311) https://github.com/python/cpython/commit/6857ebefc048e316f948091946d337b5ada807a4 --

[issue33864] collections.abc.ByteString does not register memoryview

2020-07-03 Thread miss-islington
miss-islington added the comment: New changeset 1cbcf9833f26588a16b5b69d202df727dbd09968 by Miss Islington (bot) in branch '3.9': bpo-33864: Clarify the docs for typing.ByteString (GH-21311) https://github.com/python/cpython/commit/1cbcf9833f26588a16b5b69d202df727dbd09968 --

[issue33864] collections.abc.ByteString does not register memoryview

2020-07-03 Thread miss-islington
Change by miss-islington : -- pull_requests: +20465 pull_request: https://github.com/python/cpython/pull/21313 ___ Python tracker ___

[issue33864] collections.abc.ByteString does not register memoryview

2020-07-03 Thread miss-islington
Change by miss-islington : -- pull_requests: +20464 pull_request: https://github.com/python/cpython/pull/21312 ___ Python tracker ___

[issue33864] collections.abc.ByteString does not register memoryview

2020-07-03 Thread miss-islington
miss-islington added the comment: New changeset b40e434386cd94a367d4a256e3364771140160e7 by Zackery Spytz in branch 'master': bpo-33864: Clarify the docs for typing.ByteString (GH-21311) https://github.com/python/cpython/commit/b40e434386cd94a367d4a256e3364771140160e7 -- nosy:

[issue33864] collections.abc.ByteString does not register memoryview

2020-07-03 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch nosy: +ZackerySpytz nosy_count: 5.0 -> 6.0 pull_requests: +20463 stage: -> patch review pull_request: https://github.com/python/cpython/pull/21311 ___ Python tracker

[issue33864] collections.abc.ByteString does not register memoryview

2018-06-16 Thread Raymond Hettinger
Raymond Hettinger added the comment: The docs should be made more precise. Perhaps, "This type represents the types bytes, bytearray, and memoryview of byte sequences"? -- nosy: +rhettinger ___ Python tracker

[issue33864] collections.abc.ByteString does not register memoryview

2018-06-15 Thread Josh Rosenberg
Josh Rosenberg added the comment: memoryview isn't just for bytes strings though; the format can make it a sequence of many types of different widths, meanings, etc. Calling it a BytesString would be misleading in many cases. -- nosy: +josh.r ___

[issue33864] collections.abc.ByteString does not register memoryview

2018-06-14 Thread Jason Fried
New submission from Jason Fried : Looking at the typing Module docs in the section for ByteString This type represents the types bytes, bytearray, and memoryview. But collections.abc.ByteString does not have memoryview registered. Is it because memoryview doesn't support .index()?