openvms: duck-punch a bugfix into `environb` object
authorJean-Francois Pieronne <jf.pieronne@laposte.net>
Thu, 03 Aug 2023 02:28:52 +0200
changeset 50995 80c243eab724
parent 50994 a97f2b50219b
child 50996 82bc0b26db50
openvms: duck-punch a bugfix into `environb` object The official Python3 build for OpenVMS has some crippling bug that we need to patch dynamically OpenVMS patches
mercurial/encoding.py
--- a/mercurial/encoding.py	Wed Oct 11 00:43:24 2023 +0200
+++ b/mercurial/encoding.py	Thu Aug 03 02:28:52 2023 +0200
@@ -79,6 +79,20 @@
 _nativeenviron = os.supports_bytes_environ
 if _nativeenviron:
     environ = os.environb  # re-exports
+    if pycompat.sysplatform == b'OpenVMS':
+        # workaround for a bug in VSI 3.10 port
+        # os.environb is only populated with a few Predefined symbols
+        def newget(self, key, default=None):
+            # pytype on linux does not understand OpenVMS special modules
+            import _decc  # pytype: disable=import-error
+
+            v = _decc.getenv(key, None)
+            if isinstance(key, bytes):
+                return default if v is None else v.encode('latin-1')
+            else:
+                return default if v is None else v
+
+        environ.__class__.get = newget
 else:
     # preferred encoding isn't known yet; use utf-8 to avoid unicode error
     # and recreate it once encoding is settled