Skip to content

Commit 003763d

Browse files
authored
Merge pull request #215 from parnmatt/patch-1
Add ChainMap into `install_aliases`
2 parents 97f8eca + ba01cca commit 003763d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/future/standard_library/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
from itertools import filterfalse, zip_longest
3131
from sys import intern
3232
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
3434
from subprocess import getoutput, getstatusoutput
3535
from subprocess import check_output # even on Py2.6
3636
@@ -195,6 +195,7 @@
195195
('math', 'ceil', 'future.backports.misc', 'ceil'),
196196
('collections', 'OrderedDict', 'future.backports.misc', 'OrderedDict'),
197197
('collections', 'Counter', 'future.backports.misc', 'Counter'),
198+
('collections', 'ChainMap', 'future.backports.misc', 'ChainMap'),
198199
('itertools', 'count', 'future.backports.misc', 'count'),
199200
('reprlib', 'recursive_repr', 'future.backports.misc', 'recursive_repr'),
200201
('functools', 'cmp_to_key', 'future.backports.misc', 'cmp_to_key'),

0 commit comments

Comments
 (0)