The imp package is pending deprecation in favor of importlib as of Python 3.4.
$ python3.5 -Wonce -c "import future.standard_library"
[...]/lib/python3.5/site.py:165: DeprecationWarning: 'U' mode is deprecated
f = open(fullname, "rU")
[...]/lib/python3.5/site-packages/future/standard_library/__init__.py:66: PendingDeprecationWarning: the imp module is deprecated in favour of importlib; see the module's documentation for alternative uses
import imp
The recommended alternative is described here.
The
imppackage is pending deprecation in favor ofimportlibas of Python 3.4.The recommended alternative is described here.