diff mercurial/hgweb/webutil.py @ 31483:413b44003462

py3: add __bool__ to every class defining __nonzero__ __nonzero__ was renamed to __bool__ in Python 3. This patch simply aliases __bool__ to __nonzero__ for every class implementing __nonzero__.
author Gregory Szorc <gregory.szorc@gmail.com>
date Mon, 13 Mar 2017 12:40:14 -0700
parents d4645ae6ba15
children c2dbd818e884
line wrap: on
line diff
--- a/mercurial/hgweb/webutil.py	Mon Mar 13 21:58:43 2017 -0700
+++ b/mercurial/hgweb/webutil.py	Mon Mar 13 12:40:14 2017 -0700
@@ -72,6 +72,8 @@
         """return True if any revision to navigate over"""
         return self._first() is not None
 
+    __bool__ = __nonzero__
+
     def _first(self):
         """return the minimum non-filtered changeset or None"""
         try: