Skip to content

Commit d531991

Browse files
authored
gh-136586: Improve winreg's module docstring (GH-136587)
1 parent 377b787 commit d531991

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

PC/winreg.c

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,9 @@ PyDoc_STRVAR(module_doc,
4949
"ConnectRegistry() - Establishes a connection to a predefined registry handle\n"
5050
" on another computer.\n"
5151
"CreateKey() - Creates the specified key, or opens it if it already exists.\n"
52+
"CreateKeyEx() - Creates the specified key, or opens it if it already exists.\n"
5253
"DeleteKey() - Deletes the specified key.\n"
54+
"DeleteKeyEx() - Deletes the specified key.\n"
5355
"DeleteValue() - Removes a named value from the specified registry key.\n"
5456
"EnumKey() - Enumerates subkeys of the specified open registry key.\n"
5557
"EnumValue() - Enumerates values of the specified open registry key.\n"
@@ -69,6 +71,9 @@ PyDoc_STRVAR(module_doc,
6971
"SaveKey() - Saves the specified key, and all its subkeys a file.\n"
7072
"SetValue() - Associates a value with a specified key.\n"
7173
"SetValueEx() - Stores data in the value field of an open registry key.\n"
74+
"DisableReflectionKey() - Disables registry reflection for 32bit processes running on a 64bit OS.\n"
75+
"EnableReflectionKey() - Restores registry reflection for a key.\n"
76+
"QueryReflectionKey() - Determines the reflection state for a key.\n"
7277
"\n"
7378
"Special objects:\n"
7479
"\n"

0 commit comments

Comments
 (0)