mercurial/scmwindows.py
changeset 49809 7a80a614c9e5
parent 49808 7a4143428db7
child 51285 9d3721552b6c
--- a/mercurial/scmwindows.py	Thu Dec 15 15:41:59 2022 -0500
+++ b/mercurial/scmwindows.py	Thu Dec 15 15:46:25 2022 -0500
@@ -1,4 +1,5 @@
 import os
+import winreg  # pytype: disable=import-error
 
 from typing import (
     List,
@@ -15,14 +16,6 @@
 if pycompat.TYPE_CHECKING:
     from . import ui as uimod
 
-try:
-    import _winreg as winreg  # pytype: disable=import-error
-
-    winreg.CloseKey
-except ImportError:
-    # py2 only
-    import winreg  # pytype: disable=import-error
-
 # MS-DOS 'more' is the only pager available by default on Windows.
 fallbackpager = b'more'