[Request] [+ ] D10870: typing: disable warnings for a couple of Windows specific attributes
mharbison72 (Matt Harbison)
phabricator at mercurial-scm.org
Sat Jun 12 03:45:09 UTC 2021
mharbison72 created this revision.
Herald added a reviewer: hg-reviewers.
Herald added a subscriber: mercurial-patches.
REPOSITORY
rHG Mercurial
BRANCH
stable
REVISION DETAIL
https://phab.mercurial-scm.org/D10870
AFFECTED FILES
mercurial/windows.py
CHANGE DETAILS
diff --git a/mercurial/windows.py b/mercurial/windows.py
--- a/mercurial/windows.py
+++ b/mercurial/windows.py
@@ -202,7 +202,7 @@
"""
pw = ""
while True:
- c = msvcrt.getwch()
+ c = msvcrt.getwch() # pytype: disable=module-attr
if c == '\r' or c == '\n':
break
if c == '\003':
@@ -211,8 +211,8 @@
pw = pw[:-1]
else:
pw = pw + c
- msvcrt.putwch('\r')
- msvcrt.putwch('\n')
+ msvcrt.putwch('\r') # pytype: disable=module-attr
+ msvcrt.putwch('\n') # pytype: disable=module-attr
return encoding.strtolocal(pw)
To: mharbison72, #hg-reviewers
Cc: mercurial-patches, mercurial-devel
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mercurial-scm.org/pipermail/mercurial-patches/attachments/20210612/21131175/attachment.html>
More information about the Mercurial-patches
mailing list