Re: [Python-Dev] OrderedDict.values() behavior for modified instance

2013-10-27 Thread Ethan Furman
On 10/26/2013 08:32 PM, Nikolaus Rath wrote: Ethan Furman et...@stoneleaf.us writes: Good write-up. Please submit it to the bug tracker: http://bugs.python.org Submitted as http://bugs.python.org/issue19414. If someone gives me the go-ahead for one of the proposed solutions, I'd be happy

Re: [Python-Dev] OrderedDict.values() behavior for modified instance

2013-10-26 Thread Ethan Furman
Nikolaus, Good write-up. Please submit it to the bug tracker: http://bugs.python.org -- ~Ethan~ ___ Python-Dev mailing list Python-Dev@python.org https://mail.python.org/mailman/listinfo/python-dev Unsubscribe:

Re: [Python-Dev] OrderedDict.values() behavior for modified instance

2013-10-26 Thread Nikolaus Rath
Ethan Furman et...@stoneleaf.us writes: Nikolaus, Good write-up. Please submit it to the bug tracker: http://bugs.python.org Submitted as http://bugs.python.org/issue19414. If someone gives me the go-ahead for one of the proposed solutions, I'd be happy to create a full patch. Best,

[Python-Dev] OrderedDict.values() behavior for modified instance

2013-10-25 Thread Nikolaus Rath
Hello, The documentation says the following about modifying a dict while iterating through its view: | Iterating views while adding or deleting entries in the dictionary may | raise a RuntimeError or fail to iterate over all entries. (http://docs.python.org/3/library/stdtypes.html#dict-views)