summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/command/install_lib.py
diff options
context:
space:
mode:
authorTarek Ziadé <ziade.tarek@gmail.com>2009-05-12 07:04:51 (GMT)
committerTarek Ziadé <ziade.tarek@gmail.com>2009-05-12 07:04:51 (GMT)
commit850ba43f632da5abdcec66a987586b8a01980f2d (patch)
tree53db98347ad472062d754692131d312ff0731322 /Lib/distutils/command/install_lib.py
parent28d09d68be8cf3cb10548d50f627cbbc50d537e0 (diff)
downloadcpython-850ba43f632da5abdcec66a987586b8a01980f2d.zip
cpython-850ba43f632da5abdcec66a987586b8a01980f2d.tar.gz
cpython-850ba43f632da5abdcec66a987586b8a01980f2d.tar.bz2
Merged revisions 72577 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r72577 | tarek.ziade | 2009-05-12 09:01:29 +0200 (Tue, 12 May 2009) | 1 line removing the assert statement so the code works when Python is run with -O ........
Diffstat (limited to 'Lib/distutils/command/install_lib.py')
-rw-r--r--Lib/distutils/command/install_lib.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/distutils/command/install_lib.py b/Lib/distutils/command/install_lib.py
index 81107a8..4ea61d7 100644
--- a/Lib/distutils/command/install_lib.py
+++ b/Lib/distutils/command/install_lib.py
@@ -80,7 +80,8 @@ class install_lib (Command):
if type(self.optimize) is not IntType:
try:
self.optimize = int(self.optimize)
- assert 0 <= self.optimize <= 2
+ if self.optimize not in (0, 1, 2):
+ raise AssertionError
except (ValueError, AssertionError):
raise DistutilsOptionError, "optimize must be 0, 1, or 2"