changeset 47424:f77404040776

typing: disable warnings for a couple of Windows specific attributes Differential Revision: https://phab.mercurial-scm.org/D10870
author Matt Harbison <matt_harbison@yahoo.com>
date Fri, 11 Jun 2021 23:39:31 -0400
parents be903d043099
children e0a314bcbc9d
files mercurial/windows.py
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/windows.py	Sat Jun 12 14:50:33 2021 -0400
+++ b/mercurial/windows.py	Fri Jun 11 23:39:31 2021 -0400
@@ -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)