|
30 | 30 | from itertools import filterfalse, zip_longest
|
31 | 31 | from sys import intern
|
32 | 32 | from collections import UserDict, UserList, UserString
|
33 |
| - from collections import OrderedDict, Counter # even on Py2.6 |
| 33 | + from collections import OrderedDict, Counter, ChainMap # even on Py2.6 |
34 | 34 | from subprocess import getoutput, getstatusoutput
|
35 | 35 | from subprocess import check_output # even on Py2.6
|
36 | 36 |
|
|
195 | 195 | ('math', 'ceil', 'future.backports.misc', 'ceil'),
|
196 | 196 | ('collections', 'OrderedDict', 'future.backports.misc', 'OrderedDict'),
|
197 | 197 | ('collections', 'Counter', 'future.backports.misc', 'Counter'),
|
| 198 | + ('collections', 'ChainMap', 'future.backports.misc', 'ChainMap'), |
198 | 199 | ('itertools', 'count', 'future.backports.misc', 'count'),
|
199 | 200 | ('reprlib', 'recursive_repr', 'future.backports.misc', 'recursive_repr'),
|
200 | 201 | ('functools', 'cmp_to_key', 'future.backports.misc', 'cmp_to_key'),
|
|
0 commit comments