Skip to content

Commit a6bd305

Browse files
committed
Fix for install_aliases() omitting ChainMap (issue #226)
1 parent dd4f27e commit a6bd305

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

docs/whatsnew.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ What's New
55

66
.. _whats-new-0.16.x:
77

8+
What's new in version 0.16.1 (unreleased)
9+
=========================================
10+
11+
This is a minor bug-fix release:
12+
13+
- Fix `from collections import ChainMap` after install_aliases() (issue #226)
14+
15+
816
What's new in version 0.16.0 (2016-10-27)
917
==========================================
1018

src/future/standard_library/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,7 @@
180180
MOVES = [('collections', 'UserList', 'UserList', 'UserList'),
181181
('collections', 'UserDict', 'UserDict', 'UserDict'),
182182
('collections', 'UserString','UserString', 'UserString'),
183+
('collections', 'ChainMap', 'future.backports.misc', 'ChainMap'),
183184
('itertools', 'filterfalse','itertools', 'ifilterfalse'),
184185
('itertools', 'zip_longest','itertools', 'izip_longest'),
185186
('sys', 'intern','__builtin__', 'intern'),

0 commit comments

Comments
 (0)