D1091: python3: replace im_{self,func} with __{self,func}__ globally
durin42 (Augie Fackler)
phabricator at mercurial-scm.org
Sun Oct 15 13:27:34 UTC 2017
This revision was automatically updated to reflect the committed changes.
Closed by commit rHGdaf12f69699f: python3: replace im_{self,func} with __{self,func}__ globally (authored by durin42, committed by ).
REPOSITORY
rHG Mercurial
CHANGES SINCE LAST UPDATE
https://phab.mercurial-scm.org/D1091?vs=2771&id=2781
REVISION DETAIL
https://phab.mercurial-scm.org/D1091
AFFECTED FILES
mercurial/wireproto.py
tests/test-lock.py
CHANGE DETAILS
diff --git a/tests/test-lock.py b/tests/test-lock.py
--- a/tests/test-lock.py
+++ b/tests/test-lock.py
@@ -19,7 +19,7 @@
# work around http://bugs.python.org/issue1515
if types.MethodType not in copy._deepcopy_dispatch:
def _deepcopy_method(x, memo):
- return type(x)(x.im_func, copy.deepcopy(x.im_self, memo), x.im_class)
+ return type(x)(x.__func__, copy.deepcopy(x.__self__, memo), x.im_class)
copy._deepcopy_dispatch[types.MethodType] = _deepcopy_method
class lockwrapper(lock.lock):
diff --git a/mercurial/wireproto.py b/mercurial/wireproto.py
--- a/mercurial/wireproto.py
+++ b/mercurial/wireproto.py
@@ -112,7 +112,7 @@
for command, args, opts, finalfuture in self.calls:
mtd = getattr(self._remote, command)
- batchable = mtd.batchable(mtd.im_self, *args, **opts)
+ batchable = mtd.batchable(mtd.__self__, *args, **opts)
commandargs, fremote = next(batchable)
assert fremote
To: durin42, #hg-reviewers, yuja
Cc: mercurial-devel
More information about the Mercurial-devel
mailing list