D4064: changegroup: move close() from narrow

2018-08-06 Thread indygreg (Gregory Szorc)
This revision was automatically updated to reflect the committed changes.
Closed by commit rHG75d6139e69f9: changegroup: move close() from narrow 
(authored by indygreg, committed by ).

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D4064?vs=9804=9946

REVISION DETAIL
  https://phab.mercurial-scm.org/D4064

AFFECTED FILES
  hgext/narrow/narrowchangegroup.py
  mercurial/changegroup.py

CHANGE DETAILS

diff --git a/mercurial/changegroup.py b/mercurial/changegroup.py
--- a/mercurial/changegroup.py
+++ b/mercurial/changegroup.py
@@ -544,6 +544,13 @@
 self._verbosenote = lambda s: None
 
 def close(self):
+# Ellipses serving mode.
+getattr(self, 'clrev_to_localrev', {}).clear()
+if getattr(self, 'next_clrev_to_localrev', {}):
+self.clrev_to_localrev = self.next_clrev_to_localrev
+del self.next_clrev_to_localrev
+self.changelog_done = True
+
 return closechunk()
 
 def fileheader(self, fname):
diff --git a/hgext/narrow/narrowchangegroup.py 
b/hgext/narrow/narrowchangegroup.py
--- a/hgext/narrow/narrowchangegroup.py
+++ b/hgext/narrow/narrowchangegroup.py
@@ -51,15 +51,6 @@
 extensions.wrapfunction(
 changegroup.cg1packer, 'generatefiles', generatefiles)
 
-def close(orig, self):
-getattr(self, 'clrev_to_localrev', {}).clear()
-if getattr(self, 'next_clrev_to_localrev', {}):
-self.clrev_to_localrev = self.next_clrev_to_localrev
-del self.next_clrev_to_localrev
-self.changelog_done = True
-return orig(self)
-extensions.wrapfunction(changegroup.cg1packer, 'close', close)
-
 # In a perfect world, we'd generate better ellipsis-ified graphs
 # for non-changelog revlogs. In practice, we haven't started doing
 # that yet, so the resulting DAGs for the manifestlog and filelogs



To: indygreg, durin42, #hg-reviewers
Cc: mercurial-devel
___
Mercurial-devel mailing list
Mercurial-devel@mercurial-scm.org
https://www.mercurial-scm.org/mailman/listinfo/mercurial-devel


D4064: changegroup: move close() from narrow

2018-08-02 Thread indygreg (Gregory Szorc)
indygreg created this revision.
Herald added a reviewer: durin42.
Herald added a subscriber: mercurial-devel.
Herald added a reviewer: hg-reviewers.

REVISION SUMMARY
  More of the same.

REPOSITORY
  rHG Mercurial

REVISION DETAIL
  https://phab.mercurial-scm.org/D4064

AFFECTED FILES
  hgext/narrow/narrowchangegroup.py
  mercurial/changegroup.py

CHANGE DETAILS

diff --git a/mercurial/changegroup.py b/mercurial/changegroup.py
--- a/mercurial/changegroup.py
+++ b/mercurial/changegroup.py
@@ -547,6 +547,13 @@
 self._verbosenote = lambda s: None
 
 def close(self):
+# Ellipses serving mode.
+getattr(self, 'clrev_to_localrev', {}).clear()
+if getattr(self, 'next_clrev_to_localrev', {}):
+self.clrev_to_localrev = self.next_clrev_to_localrev
+del self.next_clrev_to_localrev
+self.changelog_done = True
+
 return closechunk()
 
 def fileheader(self, fname):
diff --git a/hgext/narrow/narrowchangegroup.py 
b/hgext/narrow/narrowchangegroup.py
--- a/hgext/narrow/narrowchangegroup.py
+++ b/hgext/narrow/narrowchangegroup.py
@@ -51,15 +51,6 @@
 extensions.wrapfunction(
 changegroup.cg1packer, 'generatefiles', generatefiles)
 
-def close(orig, self):
-getattr(self, 'clrev_to_localrev', {}).clear()
-if getattr(self, 'next_clrev_to_localrev', {}):
-self.clrev_to_localrev = self.next_clrev_to_localrev
-del self.next_clrev_to_localrev
-self.changelog_done = True
-return orig(self)
-extensions.wrapfunction(changegroup.cg1packer, 'close', close)
-
 # In a perfect world, we'd generate better ellipsis-ified graphs
 # for non-changelog revlogs. In practice, we haven't started doing
 # that yet, so the resulting DAGs for the manifestlog and filelogs



To: indygreg, durin42, #hg-reviewers
Cc: mercurial-devel
___
Mercurial-devel mailing list
Mercurial-devel@mercurial-scm.org
https://www.mercurial-scm.org/mailman/listinfo/mercurial-devel