diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2016-12-09 08:16:33 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2016-12-09 08:53:50 -0500 |
commit | f14930e66601b462699c44384c482cd966f53b8f (patch) | |
tree | bea29134419118c1bcb95ca589da5a8e2372e089 /setuptools/monkey.py | |
parent | ac9997648d89131412eacbb198e2d3a7c97f69e4 (diff) | |
download | python-setuptools-git-f14930e66601b462699c44384c482cd966f53b8f.tar.gz |
Drop support for Python 2.6, removing lots of compatibility code for a leaner, cleaner codebase. Fixes #878.
Diffstat (limited to 'setuptools/monkey.py')
-rw-r--r-- | setuptools/monkey.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/monkey.py b/setuptools/monkey.py index aabc280f..09f208b1 100644 --- a/setuptools/monkey.py +++ b/setuptools/monkey.py @@ -7,8 +7,8 @@ import distutils.filelist import platform import types import functools +from importlib import import_module -from .py26compat import import_module from setuptools.extern import six import setuptools |