manifest: add docstring to text() method
authorAugie Fackler <raf@durin42.com>
Tue, 14 Oct 2014 14:42:25 -0400
changeset 22943 117e81871113
parent 22942 03602f76deee
child 22944 5aae3dea8044
manifest: add docstring to text() method
mercurial/manifest.py
--- 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)