D7276: posix: add a pytype suppression

durin42 (Augie Fackler) phabricator at mercurial-scm.org
Thu Nov 7 03:33:21 EST 2019


Closed by commit rHG147576a4e6a2: posix: add a pytype suppression (authored by durin42).
This revision was automatically updated to reflect the committed changes.

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D7276?vs=17667&id=17692

CHANGES SINCE LAST ACTION
  https://phab.mercurial-scm.org/D7276/new/

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

AFFECTED FILES
  mercurial/posix.py

CHANGE DETAILS

diff --git a/mercurial/posix.py b/mercurial/posix.py
--- a/mercurial/posix.py
+++ b/mercurial/posix.py
@@ -323,7 +323,10 @@
                     fullpath = os.path.join(cachedir, target)
                     open(fullpath, b'w').close()
                 except IOError as inst:
-                    if inst[0] == errno.EACCES:
+                    if (
+                        inst[0]  # pytype: disable=unsupported-operands
+                        == errno.EACCES
+                    ):
                         # If we can't write to cachedir, just pretend
                         # that the fs is readonly and by association
                         # that the fs won't support symlinks. This



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


More information about the Mercurial-devel mailing list