mercurial/context.py
changeset 24306 6ddc86eedc3b
parent 24300 a07314472a80
child 24323 4c7c6beade1a
--- a/mercurial/context.py	Fri Mar 13 14:20:13 2015 -0400
+++ b/mercurial/context.py	Fri Mar 13 17:00:06 2015 -0400
@@ -963,7 +963,11 @@
     def ancestors(self, followfirst=False):
         visit = {}
         c = self
-        cut = followfirst and 1 or None
+        if followfirst:
+            cut = 1
+        else:
+            cut = None
+
         while True:
             for parent in c.parents()[:cut]:
                 visit[(parent.linkrev(), parent.filenode())] = parent
@@ -1755,7 +1759,11 @@
             # "filectxfn" for performance (e.g. converting from another VCS)
             self._filectxfn = util.cachefunc(filectxfn)
 
-        self._extra = extra and extra.copy() or {}
+        if extra:
+            self._extra = extra.copy()
+        else:
+            self._extra = {}
+
         if self._extra.get('branch', '') == '':
             self._extra['branch'] = 'default'