Skip to content

Commit

Permalink
Fix for install_aliases() omitting ChainMap (issue #226)
Browse files Browse the repository at this point in the history
  • Loading branch information
edschofield committed Dec 13, 2016
1 parent dd4f27e commit a6bd305
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
8 changes: 8 additions & 0 deletions docs/whatsnew.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ What's New

.. _whats-new-0.16.x:

What's new in version 0.16.1 (unreleased)
=========================================

This is a minor bug-fix release:

- Fix `from collections import ChainMap` after install_aliases() (issue #226)


What's new in version 0.16.0 (2016-10-27)
==========================================

Expand Down
1 change: 1 addition & 0 deletions src/future/standard_library/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,7 @@
MOVES = [('collections', 'UserList', 'UserList', 'UserList'),
('collections', 'UserDict', 'UserDict', 'UserDict'),
('collections', 'UserString','UserString', 'UserString'),
('collections', 'ChainMap', 'future.backports.misc', 'ChainMap'),
('itertools', 'filterfalse','itertools', 'ifilterfalse'),
('itertools', 'zip_longest','itertools', 'izip_longest'),
('sys', 'intern','__builtin__', 'intern'),
Expand Down

0 comments on commit a6bd305

Please sign in to comment.