Skip to content

Commit

Permalink
Replace import * with explicit imports, allowing linter to detect the…
Browse files Browse the repository at this point in the history
… missing imports reported in #53.
  • Loading branch information
jaraco committed Jul 24, 2013
1 parent 7b42936 commit 9a3cc1c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion setuptools/package_index.py
Expand Up @@ -6,8 +6,12 @@
import socket
import base64

from pkg_resources import (
CHECKOUT_DIST, Distribution, BINARY_DIST, normalize_path, SOURCE_DIST,
require, Environment, find_distributions, safe_name, safe_version,
to_filename, Requirement, DEVELOP_DIST,
)
from setuptools import ssl_support
from pkg_resources import *
from distutils import log
from distutils.errors import DistutilsError
from setuptools.compat import (urllib2, httplib, StringIO, HTTPError,
Expand Down

0 comments on commit 9a3cc1c

Please sign in to comment.