D12321: largefiles: remove pycompat.iteritems()
indygreg (Gregory Szorc)
phabricator at mercurial-scm.org
Thu Mar 3 21:23:04 UTC 2022
indygreg created this revision.
Herald added a reviewer: hg-reviewers.
Herald added a subscriber: mercurial-patches.
REPOSITORY
rHG Mercurial
BRANCH
default
REVISION DETAIL
https://phab.mercurial-scm.org/D12321
AFFECTED FILES
hgext/largefiles/remotestore.py
CHANGE DETAILS
diff --git a/hgext/largefiles/remotestore.py b/hgext/largefiles/remotestore.py
--- a/hgext/largefiles/remotestore.py
+++ b/hgext/largefiles/remotestore.py
@@ -10,7 +10,6 @@
from mercurial import (
error,
- pycompat,
util,
)
@@ -52,9 +51,8 @@
def exists(self, hashes):
return {
h: s == 0
- for (h, s) in pycompat.iteritems(
- self._stat(hashes)
- ) # dict-from-generator
+ for (h, s) in self._stat(hashes).items()
+ # dict-from-generator
}
def sendfile(self, filename, hash):
To: indygreg, #hg-reviewers
Cc: mercurial-patches, mercurial-devel
More information about the Mercurial-devel
mailing list