Open
Description
According to the last example in the "Aliased Imports" section in standard_library_imports.rst and for 0.15.2, this should work:
Python 2.7.11 |Anaconda 2.3.0 (x86_64)| (default, Dec 6 2015, 18:57:58)
[GCC 4.2.1 (Apple Inc. build 5577)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
Anaconda is brought to you by Continuum Analytics.
Please check out: http://continuum.io/thanks and https://anaconda.org
>>> from future.standard_library import install_aliases
>>> install_aliases()
>>> from collections import ChainMap
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: cannot import name ChainMap
>>> import future
>>> future.__version__
'0.15.2'