diff options
author | Leonardo Freua <leonardo.batista.freua@gmail.com> | 2021-07-15 10:59:01 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-15 10:59:01 (GMT) |
commit | a0551059ba6a83d32a36fb3b87911c77f26f5b9f (patch) | |
tree | e858ffe5d36885de06ef74b98cff9a06637601fe /Lib/distutils | |
parent | b39eea06d148887dd91a3612febafbddda760593 (diff) | |
download | cpython-a0551059ba6a83d32a36fb3b87911c77f26f5b9f.zip cpython-a0551059ba6a83d32a36fb3b87911c77f26f5b9f.tar.gz cpython-a0551059ba6a83d32a36fb3b87911c77f26f5b9f.tar.bz2 |
Remove unnecessary pass statement in msvccompiler.py (GH-27123)
Diffstat (limited to 'Lib/distutils')
-rw-r--r-- | Lib/distutils/msvccompiler.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/distutils/msvccompiler.py b/Lib/distutils/msvccompiler.py index d5857cb..f0d04fd 100644 --- a/Lib/distutils/msvccompiler.py +++ b/Lib/distutils/msvccompiler.py @@ -44,7 +44,6 @@ except ImportError: "necessary compiler setting\n" "Make sure that Python modules winreg, " "win32api or win32con are installed.") - pass if _can_read_reg: HKEYS = (hkey_mod.HKEY_USERS, |