summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/command/install_lib.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/distutils/command/install_lib.py')
-rw-r--r--Lib/distutils/command/install_lib.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/Lib/distutils/command/install_lib.py b/Lib/distutils/command/install_lib.py
index 94895f4..022efa4 100644
--- a/Lib/distutils/command/install_lib.py
+++ b/Lib/distutils/command/install_lib.py
@@ -5,7 +5,7 @@ Implements the Distutils 'install_lib' command
__revision__ = "$Id$"
-import sys, os
+import os
from distutils.core import Command
from distutils.errors import DistutilsOptionError
@@ -57,7 +57,6 @@ class install_lib(Command):
self.skip_build = None
def finalize_options(self):
-
# Get all the information we need to install pure Python modules
# from the umbrella 'install' command -- build (source) directory,
# install (target) directory, and whether to compile .py files.
@@ -78,7 +77,7 @@ class install_lib(Command):
if not isinstance(self.optimize, int):
try:
self.optimize = int(self.optimize)
- assert 0 <= self.optimize <= 2
+ assert self.optimize in (0, 1, 2)
except (ValueError, AssertionError):
raise DistutilsOptionError("optimize must be 0, 1, or 2")
@@ -95,7 +94,6 @@ class install_lib(Command):
if outfiles is not None and self.distribution.has_pure_modules():
self.byte_compile(outfiles)
-
# -- Top-level worker functions ------------------------------------
# (called from 'run()')