D7747: revlog: drop an unused variable assignment
mharbison72 (Matt Harbison)
phabricator at mercurial-scm.org
Fri Dec 27 22:03:00 UTC 2019
Closed by commit rHGbdb357161d7a: revlog: drop an unused variable assignment (authored by mharbison72).
This revision was automatically updated to reflect the committed changes.
This revision was not accepted when it landed; it landed in state "Needs Review".
REPOSITORY
rHG Mercurial
CHANGES SINCE LAST UPDATE
https://phab.mercurial-scm.org/D7747?vs=18963&id=18978
CHANGES SINCE LAST ACTION
https://phab.mercurial-scm.org/D7747/new/
REVISION DETAIL
https://phab.mercurial-scm.org/D7747
AFFECTED FILES
mercurial/revlog.py
CHANGE DETAILS
diff --git a/mercurial/revlog.py b/mercurial/revlog.py
--- a/mercurial/revlog.py
+++ b/mercurial/revlog.py
@@ -1772,10 +1772,8 @@
if node == nullid:
return b"", {}
- # The text as stored inside the revlog. Might be the revision or might
- # need to be processed to retrieve the revision.
- rawtext = None
-
+ # ``rawtext`` is the text as stored inside the revlog. Might be the
+ # revision or might need to be processed to retrieve the revision.
rev, rawtext, validated = self._rawtext(node, rev, _df=_df)
if raw and validated:
To: mharbison72, indygreg, #hg-reviewers
Cc: mercurial-devel
More information about the Mercurial-devel
mailing list