diff options
| author | Serhiy Storchaka <storchaka@gmail.com> | 2016-04-25 00:12:32 +0300 |
|---|---|---|
| committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-04-25 00:12:32 +0300 |
| commit | 1746f3caf7a6a71c04f79da2b89c888cb5daadec (patch) | |
| tree | fa89c019c899f4ee4c3f8d8abfe0c9db37c53f1c /command | |
| parent | 905adfca47183d923e35135c4795a3b0439c6104 (diff) | |
| download | python-setuptools-git-1746f3caf7a6a71c04f79da2b89c888cb5daadec.tar.gz | |
Removed unused imports.
Diffstat (limited to 'command')
| -rw-r--r-- | command/config.py | 2 | ||||
| -rw-r--r-- | command/register.py | 2 | ||||
| -rw-r--r-- | command/sdist.py | 1 |
3 files changed, 2 insertions, 3 deletions
diff --git a/command/config.py b/command/config.py index 847e8581..b1fd09e0 100644 --- a/command/config.py +++ b/command/config.py @@ -9,7 +9,7 @@ configure-like tasks: "try to compile this C code", or "figure out where this header file lives". """ -import sys, os, re +import os, re from distutils.core import Command from distutils.errors import DistutilsExecError diff --git a/command/register.py b/command/register.py index b49f86fe..a3e0893a 100644 --- a/command/register.py +++ b/command/register.py @@ -5,7 +5,7 @@ Implements the Distutils 'register' command (register with the repository). # created 2002/10/21, Richard Jones -import os, string, getpass +import getpass import io import urllib.parse, urllib.request from warnings import warn diff --git a/command/sdist.py b/command/sdist.py index 7ea3d5fa..35a06eb0 100644 --- a/command/sdist.py +++ b/command/sdist.py @@ -3,7 +3,6 @@ Implements the Distutils 'sdist' command (create a source distribution).""" import os -import string import sys from types import * from glob import glob |
