mercurial/debugcommands.py
changeset 49896 88b81dc2d82b
parent 49826 c84844cd523a
child 49944 8f76a41ee465
--- a/mercurial/debugcommands.py	Wed Jan 11 19:53:58 2023 +0000
+++ b/mercurial/debugcommands.py	Fri Jan 06 11:38:13 2023 -0500
@@ -3800,6 +3800,21 @@
         'repo': repo,
     }
 
+    # py2exe disables initialization of the site module, which is responsible
+    # for arranging for ``quit()`` to exit the interpreter.  Manually initialize
+    # the stuff that site normally does here, so that the interpreter can be
+    # quit in a consistent manner, whether run with pyoxidizer, exewrapper.c,
+    # py.exe, or py2exe.
+    if getattr(sys, "frozen", None) == 'console_exe':
+        try:
+            import site
+
+            site.setcopyright()
+            site.sethelper()
+            site.setquit()
+        except ImportError:
+            site = None  # Keep PyCharm happy
+
     code.interact(local=imported_objects)