[issue36473] Detect all dictionary changes during iteration

2019-03-29 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: This is a duplicate of issue6017, issue19332 and issue29420. -- nosy: +pitrou, rhettinger, serhiy.storchaka ___ Python tracker ___

[issue36473] Detect all dictionary changes during iteration

2019-03-29 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +inada.naoki ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36473] Detect all dictionary changes during iteration

2019-03-29 Thread Thomas Perl
Change by Thomas Perl : -- keywords: +patch pull_requests: +12554 stage: -> patch review ___ Python tracker ___ ___

[issue36473] Detect all dictionary changes during iteration

2019-03-29 Thread Thomas Perl
New submission from Thomas Perl : On top of issue 36452, I noticed some other corner cases that are still not handled. For one, the patch (Github PR 12596) only handles iterating over keys, but not iterating over values or items: == a = {0: 0} it = iter(a.values()) print('Length hint:',