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: ShareableList size guard incorrect for str data
Type: behavior Stage: resolved
Components: Library (Lib) Versions: Python 3.9, Python 3.8
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: pitrou Nosy List: miss-islington, pitrou
Priority: normal Keywords: patch

Created on 2020-04-19 14:46 by pitrou, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 19606 merged pitrou, 2020-04-19 15:27
PR 19625 merged pitrou, 2020-04-20 18:58
Messages (3)
msg366782 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2020-04-19 14:47
The size check is done before encoding to utf-8...
msg366865 - (view) Author: miss-islington (miss-islington) Date: 2020-04-20 18:55
New changeset eba9f6155df59c9beed97fb5764c9f01dd941af0 by Antoine Pitrou in branch 'master':
bpo-40330: Fix utf-8 size check in ShareableList (GH-19606)
https://github.com/python/cpython/commit/eba9f6155df59c9beed97fb5764c9f01dd941af0
msg366868 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2020-04-20 19:22
New changeset 887ff8e37e238fbce18c647e588283904f38ab24 by Antoine Pitrou in branch '3.8':
[3.8] bpo-40330: Fix utf-8 size check in ShareableList (GH-19606) (GH-19625)
https://github.com/python/cpython/commit/887ff8e37e238fbce18c647e588283904f38ab24
History
Date User Action Args
2022-04-11 14:59:29adminsetgithub: 84510
2020-04-20 19:23:06pitrousetstatus: open -> closed
stage: patch review -> resolved
resolution: fixed
versions: - Python 3.7
2020-04-20 19:22:53pitrousetmessages: + msg366868
2020-04-20 18:58:56pitrousetpull_requests: + pull_request18953
2020-04-20 18:55:09miss-islingtonsetnosy: + miss-islington
messages: + msg366865
2020-04-19 15:27:08pitrousetkeywords: + patch
stage: needs patch -> patch review
pull_requests: + pull_request18940
2020-04-19 14:47:30pitrousetmessages: + msg366782
2020-04-19 14:46:48pitroucreate