D2280: remotenames: port partway to python3 by using collections.MutableMapping
durin42 (Augie Fackler)
phabricator at mercurial-scm.org
Sat Feb 17 03:53:07 UTC 2018
This revision was automatically updated to reflect the committed changes.
Closed by commit rHG25a7d2761898: remotenames: port partway to python3 by using collections.MutableMapping (authored by durin42, committed by ).
REPOSITORY
rHG Mercurial
CHANGES SINCE LAST UPDATE
https://phab.mercurial-scm.org/D2280?vs=5785&id=5792
REVISION DETAIL
https://phab.mercurial-scm.org/D2280
AFFECTED FILES
hgext/remotenames.py
CHANGE DETAILS
diff --git a/hgext/remotenames.py b/hgext/remotenames.py
--- a/hgext/remotenames.py
+++ b/hgext/remotenames.py
@@ -22,7 +22,7 @@
from __future__ import absolute_import
-import UserDict
+import collections
from mercurial.i18n import _
@@ -57,7 +57,7 @@
default=True,
)
-class lazyremotenamedict(UserDict.DictMixin):
+class lazyremotenamedict(collections.MutableMapping):
"""
Read-only dict-like Class to lazily resolve remotename entries
@@ -110,6 +110,18 @@
else:
raise KeyError()
+ def __iter__(self):
+ return iter(self.potentialentries)
+
+ def __len__(self):
+ return len(self.potentialentries)
+
+ def __setitem__(self):
+ raise NotImplementedError
+
+ def __delitem__(self):
+ raise NotImplementedError
+
def _fetchandcache(self, key):
if key in self.cache:
return self.cache[key]
To: durin42, #hg-reviewers, yuja
Cc: dlax, yuja, mercurial-devel
More information about the Mercurial-devel
mailing list