Les documents sur les fonctionnalités de réflexion-clé dans winreg sont rares (et les pièces manquantes). Vous avez vraiment besoin de this patch, mais jusqu'à ce qu'il soit appliqué et qu'une nouvelle version de Python soit faite avec ces correctifs, vous pouvez au moins essayer la route DisableReflectionKey
etc selon les docs que le patch ajoute (voici la RST pour eux):
+.. function:: DisableReflectionKey(key)
+
+ Disables registry reflection for 32-bit processes running on a 64-bit
+ Operating System.
+
+ *key* is an already open key, or one of the predefined :const:`HKEY_\*`
+ constants.
+
+ Will generally raise :exc:`NotImplemented` if executed on a 32-bit
+ Operating System.
+ If the key is not on the reflection list, the function succeeds but has no
+ effect. Disabling reflection for a key does not affect reflection of any
+ subkeys.
+
+.. function:: EnableReflectionKey(key)
+
+ Restores registry reflection for the specified disabled key.
+
+ *key* is an already open key, or one of the predefined :const:`HKEY_\*`
+ constants.
+
+ Will generally raise :exc:`NotImplemented` if executed on a 32-bit
+ Operating System.
+
+ Restoring reflection for a key does not affect reflection of any subkeys.
+
+
+.. function:: QueryReflectionKey(key)
+
+ Determines the reflection state for the specified key.
+
+ *key* is an already open key, or one of the predefined :const:`HKEY_\*`
+ constants.
+
+ Returns ``True`` if reflection is disabled.
+
+ Will generally raise :exc:`NotImplemented` if executed on a 32-bit
+ Operating System.
Qu'est-ce qui ne fonctionne pas correctement? Comment ça échoue? Pouvez-vous poster la partie pertinente de votre code? –