This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author eamanu
Recipients Alexander Oblovatniy, azsorkin, cjw296, dojutsu-user, eamanu, mariocj89, michael.foord, nekobon, r.david.murray, rbcollins, rhettinger, xtreak
Date 2019-01-05.14:03:40
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1546697020.47.0.787412692968.issue24928@roundup.psfhosted.org>
In-reply-to
Content
Sorry I was wrong.

On 

```python
foo = OrderedDict()
foo['a'] = object()
foo['b'] = 'something'
```

I was write "first" and "second" like key and fail in

```python
@patch.dict(foo, OrderedDict(update_values))
def test():
    self.assertEqual(list(foo), sorted(foo))

test()
```

Sorry.

Now I am sending the PR
History
Date User Action Args
2019-01-05 14:03:41eamanusetrecipients: + eamanu, rhettinger, rbcollins, cjw296, r.david.murray, michael.foord, nekobon, azsorkin, Alexander Oblovatniy, mariocj89, xtreak, dojutsu-user
2019-01-05 14:03:40eamanusetmessageid: <1546697020.47.0.787412692968.issue24928@roundup.psfhosted.org>
2019-01-05 14:03:40eamanulinkissue24928 messages
2019-01-05 14:03:40eamanucreate