diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2012-12-19 21:20:29 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2012-12-19 21:20:29 -0500 |
commit | fc38bf8526cb1717968a1958439da5fae4768375 (patch) | |
tree | 60a2a5097868dbe63196b349ec222e92a9003f03 /setup.py | |
parent | 05dd78ed22cc997d7481683cab012b73bf5d710a (diff) | |
download | python-coveragepy-git-fc38bf8526cb1717968a1958439da5fae4768375.tar.gz |
Retro-fit onto 2.3 and 2.4 again.
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -42,9 +42,9 @@ import os, sys from setuptools import setup from distutils.core import Extension # pylint: disable=E0611,F0401 from distutils.command import build_ext # pylint: disable=E0611,F0401 -from distutils.errors import ( # pylint: disable=E0611,F0401 - CCompilerError, DistutilsExecError, DistutilsPlatformError - ) +from distutils.errors import CCompilerError # pylint: disable=E0611,F0401,C0301 +from distutils.errors import DistutilsExecError # pylint: disable=E0611,F0401,C0301 +from distutils.errors import DistutilsPlatformError # pylint: disable=E0611,F0401,C0301 # Get or massage our metadata. We exec coverage/version.py so we can avoid # importing the product code into setup.py. |