From patchwork Tue Oct 14 19:36:22 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [2,of,2,v2] manifest: add docstring to text() method From: Augie Fackler X-Patchwork-Id: 6251 Message-Id: To: mercurial-devel@selenic.com Date: Tue, 14 Oct 2014 15:36:22 -0400 # HG changeset patch # User Augie Fackler # Date 1413312145 14400 # Tue Oct 14 14:42:25 2014 -0400 # Node ID fdf0d54278ddec7c14758d79b8b26abe59047f58 # Parent 8c327b7a79460857a4c81ed0272bd543d88b7997 manifest: add docstring to text() method diff --git a/mercurial/manifest.py b/mercurial/manifest.py --- a/mercurial/manifest.py +++ b/mercurial/manifest.py @@ -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)