D7280: scmposix: another suppression on IOError subscripting

durin42 (Augie Fackler) phabricator at mercurial-scm.org
Wed Nov 6 22:58:46 UTC 2019


durin42 created this revision.
Herald added a subscriber: mercurial-devel.
Herald added a reviewer: hg-reviewers.

REVISION SUMMARY
  As before, this will clear up when we move to Python 3-only.

REPOSITORY
  rHG Mercurial

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

AFFECTED FILES
  mercurial/scmposix.py

CHANGE DETAILS

diff --git a/mercurial/scmposix.py b/mercurial/scmposix.py
--- a/mercurial/scmposix.py
+++ b/mercurial/scmposix.py
@@ -90,7 +90,7 @@
         except ValueError:
             pass
         except IOError as e:
-            if e[0] == errno.EINVAL:
+            if e[0] == errno.EINVAL:  # pytype: disable=unsupported-operands
                 pass
             else:
                 raise



To: durin42, #hg-reviewers
Cc: mercurial-devel


More information about the Mercurial-devel mailing list