Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix size changed during iteration. (#7956)
`dict.values()` is a generator. So it can cause errors when the dict is changed during iteration. Prevent this by casting to an array, before iterating. Most py2 backwards compatible solution.
- Loading branch information