зеркало из https://github.com/mozilla/gecko-dev.git
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:
Родитель
3ccc9e7376
Коммит
4c2f5c065e
|
@ -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
|
||||
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче