Mercurial > hg-stable
changeset 22943:117e81871113
manifest: add docstring to text() method
author | Augie Fackler <raf@durin42.com> |
---|---|
date | Tue, 14 Oct 2014 14:42:25 -0400 |
parents | 03602f76deee |
children | 5aae3dea8044 |
files | mercurial/manifest.py |
diffstat | 1 files changed, 1 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/manifest.py Fri Oct 10 14:09:37 2014 -0400 +++ b/mercurial/manifest.py Tue Oct 14 14:42:25 2014 -0400 @@ -42,6 +42,7 @@ return dicthelpers.diff(self._flags, d2._flags, "") def text(self): + """Get the full data of this manifest as a bytestring.""" fl = sorted(self) _checkforbidden(fl)