context: remove basectx.__int__ (API)
authorGregory Szorc <gregory.szorc@gmail.com>
Sat, 24 Feb 2018 11:21:14 -0800
changeset 36411 38f480502043
parent 36410 67ec4ad815e6
child 36412 03eff66adb3b
context: remove basectx.__int__ (API) basectx is the only type in the repo having __int__ implemented. This magic method can result in unexpected coercion. Furthermore, having it implemented is wrong for some contexts, since rev() may return None in some cases. Previous commits removed known cases in core where contexts are coerced to integers. So let's delete basectx.__int__. This commit is a bit dangerous. While the test suite passes, there are likely still some callers in core that rely on __int__ that don't have test coverage. An alternative would be to issue a deprecation warning and let this bake for a few releases. .. api:: context.basectx no longer implements __int__. Context instances will no longer cast to ints. Consumers should call ``ctx.rev()`` instead. Differential Revision: https://phab.mercurial-scm.org/D2433
mercurial/context.py
--- a/mercurial/context.py	Sat Feb 24 11:17:10 2018 -0800
+++ b/mercurial/context.py	Sat Feb 24 11:21:14 2018 -0800
@@ -78,9 +78,6 @@
 
     __str__ = encoding.strmethod(__bytes__)
 
-    def __int__(self):
-        return self.rev()
-
     def __repr__(self):
         return r"<%s %s>" % (type(self).__name__, str(self))