# HG changeset patch # User Rémi Cardona # Date 1442411442 -7200 # Node ID c6290d727c0c942d9cf0b90d5330631137c57611 # Parent 49a62b8f6d43bd3e30e4b0f0f8823995e7e40e09 [py3k] __nonzero__ → __bool__ diff -r 49a62b8f6d43 -r c6290d727c0c utils.py --- a/utils.py Wed Sep 16 15:17:42 2015 +0200 +++ b/utils.py Wed Sep 16 15:50:42 2015 +0200 @@ -226,9 +226,11 @@ self.tracewrites = tracewrites super(UStringIO, self).__init__(*args, **kwargs) - def __nonzero__(self): + def __bool__(self): return True + __nonzero__ = __bool__ + def write(self, value): assert isinstance(value, text_type), u"unicode required not %s : %s"\ % (type(value).__name__, repr(value)) diff -r 49a62b8f6d43 -r c6290d727c0c web/request.py --- a/web/request.py Wed Sep 16 15:17:42 2015 +0200 +++ b/web/request.py Wed Sep 16 15:50:42 2015 +0200 @@ -967,8 +967,10 @@ def __getattribute__(self, attr): raise AuthenticationError() - def __nonzero__(self): + def __bool__(self): return False + + __nonzero__ = __bool__ class _MockAnonymousSession(object): sessionid = 'thisisnotarealsession'