| commit | 78601a38c22ba1f09104e2562a10a94cbd36f5f0 | [log] [tgz] |
|---|---|---|
| author | Victor Stinner <victor.stinner@gmail.com> | Fri Sep 09 19:28:36 2016 -0700 |
| committer | Victor Stinner <victor.stinner@gmail.com> | Fri Sep 09 19:28:36 2016 -0700 |
| tree | 1abadfbcec51e16790781cbe045eaa6de6b91478 | |
| parent | eb0dfa9251102e42bdabcb84de17cecb43537442 [diff] |
Fix SystemError in compact dict Issue #28040: Fix _PyDict_DelItem_KnownHash() and _PyDict_Pop(): convert splitted table to combined table to be able to delete the item. Write an unit test for the issue. Patch by INADA Naoki.