Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 850a357

Browse files
committedFeb 25, 2025
Fix linter error re: Redefinition of mscvrt
1 parent 1e1514f commit 850a357

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎Lib/test/test_getpass.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -164,11 +164,11 @@ def test_falls_back_to_stdin(self):
164164

165165
try:
166166
import msvcrt
167-
msvcrt = True
167+
msvcrt_available = True
168168
except ImportError:
169-
msvcrt = False
169+
msvcrt_available = False
170170

171-
@unittest.skipUnless(msvcrt, 'tests require system with msvcrt (Windows)')
171+
@unittest.skipUnless(msvcrt_available, 'tests require system with msvcrt (Windows)')
172172
class WinGetpassTest(unittest.TestCase):
173173

174174
def test_uses_msvcrt_directly(self):

0 commit comments

Comments
 (0)
Failed to load comments.