Bug 1580280 - [configure] Define '__bool__' on PositiveOptionValue for Python 3 compatibility, r=nalexander

Differential Revision: https://phabricator.services.mozilla.com/D47609

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Andrew Halberstadt 2019-09-30 19:42:11 +00:00
Родитель 3ccc9e7376
Коммит 4c2f5c065e
1 изменённых файлов: 4 добавлений и 1 удалений

Просмотреть файл

@ -107,7 +107,10 @@ class PositiveOptionValue(OptionValue):
--option=value[,value2...].
'''
def __nonzero__(self):
def __nonzero__(self): # py2
return True
def __bool__(self): # py3
return True