mercurial/revlog.py
changeset 42984 9d62f9fa332f
parent 42983 35ab2c1a58aa
child 42985 a45d670c2bfc
equal deleted inserted replaced
42983:35ab2c1a58aa 42984:9d62f9fa332f
  1621 
  1621 
  1622         This function currently return a dictionary. However, more advanced
  1622         This function currently return a dictionary. However, more advanced
  1623         mapping object will likely be used in the future for a more
  1623         mapping object will likely be used in the future for a more
  1624         efficient/lazy code.
  1624         efficient/lazy code.
  1625         """
  1625         """
  1626         # XXX will actualy return data once storage is implemented.
  1626         return self._revisiondata(nodeorrev, _df)[1]
  1627         return {}
       
  1628 
  1627 
  1629     def _revisiondata(self, nodeorrev, _df=None, raw=False):
  1628     def _revisiondata(self, nodeorrev, _df=None, raw=False):
  1630         # deal with <nodeorrev> argument type
  1629         # deal with <nodeorrev> argument type
  1631         if isinstance(nodeorrev, int):
  1630         if isinstance(nodeorrev, int):
  1632             rev = nodeorrev
  1631             rev = nodeorrev