# HG changeset patch # User Martin von Zweigbergk # Date 1497559355 25200 # Node ID ef015ba5ba2efea5ad1d4cd748dd76e14bdb3e1f # Parent 8e9b9f020f95b0a1bba2d7c5eae8379a251b811b 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 -r 8e9b9f020f95 -r ef015ba5ba2e mercurial/revlog.py --- a/mercurial/revlog.py Thu Jun 15 13:25:41 2017 -0700 +++ b/mercurial/revlog.py Thu Jun 15 13:42:35 2017 -0700 @@ -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."""