Issue 33199: PyDict_Copy() can leave 'ma_version_tag' uninitialized (original) (raw)

This issue has been migrated to GitHub: https://github.com/python/cpython/issues/77380

classification

Title: PyDict_Copy() can leave 'ma_version_tag' uninitialized
Type: behavior Stage: resolved
Components: Interpreter Core Versions: Python 3.8, Python 3.7, Python 3.6

process

Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: methane, miss-islington, pdox, rhettinger
Priority: normal Keywords: patch

Created on 2018-04-01 08:56 by pdox, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 6341 merged methane,2018-04-02 00:33
PR 6357 merged miss-islington,2018-04-03 02:45
PR 6358 merged miss-islington,2018-04-03 02:46
Messages (4)
msg314768 - (view) Author: (pdox) * Date: 2018-04-01 08:56
PyDict_Copy leaves 'ma_version_tag' uninitialized when the dictionary being copied has a split table.
msg314851 - (view) Author: Inada Naoki (methane) * (Python committer) Date: 2018-04-03 02:43
New changeset d1c82c5cc7be0c21dddf86fd19c1702f6218459b by INADA Naoki in branch 'master': bpo-33199: Initialize ma_version_tag in PyDict_Copy (GH-6341) https://github.com/python/cpython/commit/d1c82c5cc7be0c21dddf86fd19c1702f6218459b
msg314853 - (view) Author: miss-islington (miss-islington) Date: 2018-04-03 03:00
New changeset de755129a7a14cb3bee89aa256ca2e4a9a6605ce by Miss Islington (bot) in branch '3.7': bpo-33199: Initialize ma_version_tag in PyDict_Copy (GH-6341) https://github.com/python/cpython/commit/de755129a7a14cb3bee89aa256ca2e4a9a6605ce
msg314854 - (view) Author: miss-islington (miss-islington) Date: 2018-04-03 03:22
New changeset 9a90826c9b64183713ebe5a98ec82423d9cae3ee by Miss Islington (bot) in branch '3.6': bpo-33199: Initialize ma_version_tag in PyDict_Copy (GH-6341) https://github.com/python/cpython/commit/9a90826c9b64183713ebe5a98ec82423d9cae3ee
History
Date User Action Args
2022-04-11 14:58:59 admin set github: 77380
2018-04-03 03:37:15 methane set resolution: fixed
2018-04-03 03:37:04 methane set status: open -> closed
2018-04-03 03:36:47 methane set stage: patch review -> resolved
2018-04-03 03:22:16 miss-islington set messages: +
2018-04-03 03:00:28 miss-islington set nosy: + miss-islingtonmessages: +
2018-04-03 02:46:04 miss-islington set pull_requests: + <pull%5Frequest6069>
2018-04-03 02:45:12 miss-islington set pull_requests: + <pull%5Frequest6068>
2018-04-03 02:43:56 methane set messages: +
2018-04-02 00:33:39 methane set keywords: + patchstage: patch reviewpull_requests: + <pull%5Frequest6052>
2018-04-02 00:27:32 methane set versions: - Python 3.4, Python 3.5
2018-04-01 22:03:33 pitrou set nosy: + rhettinger, methane
2018-04-01 08:56:59 pdox create