Created on 2019-09-18 07:10 by serhiy.storchaka, last changed 2019-10-07 10:28 by vstinner. This issue is now closed.
| Pull Requests | |||
|---|---|---|---|
| URL | Status | Linked | Edit |
| PR 16602 | merged | corona10, 2019-10-06 06:21 | |
| PR 16611 | merged | vstinner, 2019-10-07 10:05 | |
| Messages (6) | |||
|---|---|---|---|
| msg352705 - (view) | Author: Serhiy Storchaka (serhiy.storchaka) * | Date: 2019-09-18 07:10 | |
In 3.8:
>>> {1: 2, 3: 4}.keys() & {1, 2}
{1}
In master:
>>> {1: 2, 3: 4}.keys() & iter([1, 2])
set()
The behavior was changed in issue27575.
|
|||
| msg354033 - (view) | Author: Serhiy Storchaka (serhiy.storchaka) * | Date: 2019-10-06 11:28 | |
New changeset c38e725d17537b20ff090b1b5ec7db1820ff9b63 by Serhiy Storchaka (Dong-hee Na) in branch 'master': bpo-38210: Fix intersection operation with dict view and iterator. (GH-16602) https://github.com/python/cpython/commit/c38e725d17537b20ff090b1b5ec7db1820ff9b63 |
|||
| msg354034 - (view) | Author: Serhiy Storchaka (serhiy.storchaka) * | Date: 2019-10-06 11:29 | |
Thank you Dong-hee for your fix! |
|||
| msg354045 - (view) | Author: Raymond Hettinger (rhettinger) * | Date: 2019-10-06 19:37 | |
Please add a test for this regression. |
|||
| msg354047 - (view) | Author: Serhiy Storchaka (serhiy.storchaka) * | Date: 2019-10-06 19:51 | |
It was added. Do you mean any special? |
|||
| msg354072 - (view) | Author: STINNER Victor (vstinner) * | Date: 2019-10-07 10:28 | |
New changeset d97f1ce6dba6c4aa5614adc06ad2e0948709845c by Victor Stinner in branch 'master': bpo-38210: Fix compiler warning in dictobject.c (GH-16611) https://github.com/python/cpython/commit/d97f1ce6dba6c4aa5614adc06ad2e0948709845c |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2019-10-07 10:28:19 | vstinner | set | nosy:
+ vstinner messages: + msg354072 |
| 2019-10-07 10:05:29 | vstinner | set | pull_requests: + pull_request16199 |
| 2019-10-06 19:51:25 | serhiy.storchaka | set | messages: + msg354047 |
| 2019-10-06 19:37:20 | rhettinger | set | messages: + msg354045 |
| 2019-10-06 11:29:41 | serhiy.storchaka | set | status: open -> closed resolution: fixed messages: + msg354034 stage: patch review -> resolved |
| 2019-10-06 11:28:39 | serhiy.storchaka | set | messages: + msg354033 |
| 2019-10-06 09:21:20 | corona10 | set | nosy:
+ corona10 |
| 2019-10-06 06:21:50 | corona10 | set | keywords:
+ patch stage: patch review pull_requests: + pull_request16190 |
| 2019-09-18 07:10:06 | serhiy.storchaka | create | |