[issue28583] PyDict_SetDefault doesn't combine split table when needed

2017-03-31 Thread Donald Stufft
Changes by Donald Stufft : -- pull_requests: +859 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue28583] PyDict_SetDefault doesn't combine split table when needed

2016-11-02 Thread INADA Naoki
Changes by INADA Naoki : -- resolution: -> fixed stage: commit review -> resolved status: open -> closed ___ Python tracker ___ ___ P

[issue28583] PyDict_SetDefault doesn't combine split table when needed

2016-11-02 Thread Roundup Robot
Roundup Robot added the comment: New changeset 4e9c7704f373 by INADA Naoki in branch '3.6': Issue #28583: PyDict_SetDefault didn't combine split table when needed. https://hg.python.org/cpython/rev/4e9c7704f373 New changeset a6a79053aec4 by INADA Naoki in branch 'default': Issue #28583: PyDict_S

[issue28583] PyDict_SetDefault doesn't combine split table when needed

2016-11-02 Thread INADA Naoki
INADA Naoki added the comment: I'll commit. -- assignee: -> inada.naoki ___ Python tracker ___ ___ Python-bugs-list mailing list Unsu

[issue28583] PyDict_SetDefault doesn't combine split table when needed

2016-11-02 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Besides the patch is a little hard to understanding due to changes that are not directly related to the issue, it LGTM. -- ___ Python tracker ___

[issue28583] PyDict_SetDefault doesn't combine split table when needed

2016-11-02 Thread INADA Naoki
Changes by INADA Naoki : -- nosy: +ned.deily priority: normal -> release blocker stage: -> commit review ___ Python tracker ___ ___ P

[issue28583] PyDict_SetDefault doesn't combine split table when needed

2016-11-02 Thread INADA Naoki
INADA Naoki added the comment: LGTM -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/

[issue28583] PyDict_SetDefault doesn't combine split table when needed

2016-11-02 Thread Xiang Zhang
Xiang Zhang added the comment: Here is a patch. -- keywords: +patch Added file: http://bugs.python.org/file45308/PyDict_SetDefault.patch ___ Python tracker ___ __

[issue28583] PyDict_SetDefault doesn't combine split table when needed

2016-11-01 Thread Xiang Zhang
New submission from Xiang Zhang: PyDict_SetDefault doesn't combine split table when needed. This could lead to loss of order or crash. This is a follow up of #28199. -- components: Interpreter Core messages: 279889 nosy: inada.naoki, serhiy.storchaka, xiang.zhang priority: normal severi