mercurial/context.py
changeset 35294 d4f65050f3c5
parent 35293 8b3a636bb341
child 35295 bea46aed1e1b
equal deleted inserted replaced
35293:8b3a636bb341 35294:d4f65050f3c5
  2008                 else:
  2008                 else:
  2009                     # Must fallback here, too, because we only set flags.
  2009                     # Must fallback here, too, because we only set flags.
  2010                     return self._wrappedctx[path].data()
  2010                     return self._wrappedctx[path].data()
  2011             else:
  2011             else:
  2012                 raise error.ProgrammingError("No such file or directory: %s" %
  2012                 raise error.ProgrammingError("No such file or directory: %s" %
  2013                                              self._path)
  2013                                              path)
  2014         else:
  2014         else:
  2015             return self._wrappedctx[path].data()
  2015             return self._wrappedctx[path].data()
  2016 
  2016 
  2017     def isinmemory(self):
  2017     def isinmemory(self):
  2018         return True
  2018         return True