mercurial/dirstate.py
changeset 44297 cf1f8660e568
parent 44227 7f5410dfc8a6
child 44357 bed8d08cfcb2
--- a/mercurial/dirstate.py	Sun Feb 09 16:18:26 2020 -0500
+++ b/mercurial/dirstate.py	Mon Feb 10 21:54:12 2020 +0100
@@ -1846,12 +1846,12 @@
 
         @property
         def nonnormalset(self):
-            nonnorm, otherparents = self._rustmap.nonnormalentries()
+            nonnorm = self._rustmap.non_normal_entries()
             return nonnorm
 
         @propertycache
         def otherparentset(self):
-            nonnorm, otherparents = self._rustmap.nonnormalentries()
+            otherparents = self._rustmap.other_parent_entries()
             return otherparents
 
         @propertycache