mirror of
https://github.com/python/cpython.git
synced 2025-10-17 20:28:43 +00:00
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 ........
This commit is contained in:
parent
3261fa5a6b
commit
da31a3f0c2
1 changed files with 2 additions and 1 deletions
|
@ -77,7 +77,8 @@ class install_lib(Command):
|
|||
if not isinstance(self.optimize, int):
|
||||
try:
|
||||
self.optimize = int(self.optimize)
|
||||
assert self.optimize in (0, 1, 2)
|
||||
if self.optimize not in (0, 1, 2):
|
||||
raise AssertionError
|
||||
except (ValueError, AssertionError):
|
||||
raise DistutilsOptionError("optimize must be 0, 1, or 2")
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue