[PATCH 3 of 6] revlog: rename list of nodes from "content" to "nodes"

Martin von Zweigbergk martinvonz at google.com
Thu Jun 15 18:25:30 EDT 2017


# HG changeset patch
# User Martin von Zweigbergk <martinvonz at google.com>
# Date 1497559355 25200
#      Thu Jun 15 13:42:35 2017 -0700
# Node ID d3ebf9b15b904c0ac40dd8e0553fc31464374635
# Parent  d10d1530971d42bda170afbf5df78935a86e3e9f
revlog: rename list of nodes from "content" to "nodes"

It seems like the reason for "content" is that the variable contains
the nodes that the changegroup "contains", see e234eda20984 (revlog:
make addgroup returns a list of node contained in the added source,
2012-01-13), but "nodes" seems much clearer.

diff --git a/mercurial/revlog.py b/mercurial/revlog.py
--- a/mercurial/revlog.py
+++ b/mercurial/revlog.py
@@ -1854,7 +1854,7 @@
         this revlog and the node that was added.
         """
 
-        content = []
+        nodes = []
 
         r = len(self)
         end = 0
@@ -1885,7 +1885,7 @@
                 delta = chunkdata['delta']
                 flags = chunkdata['flags'] or REVIDX_DEFAULT_FLAGS
 
-                content.append(node)
+                nodes.append(node)
 
                 link = linkmapper(cs)
                 if node in self.nodemap:
@@ -1944,7 +1944,7 @@
                 dfh.close()
             ifh.close()
 
-        return content
+        return nodes
 
     def iscensored(self, rev):
         """Check if a file revision is censored."""


More information about the Mercurial-devel mailing list