Skip to content

gh-136586: Improve winreg's module docstring #136587

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions PC/winreg.c
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,9 @@ PyDoc_STRVAR(module_doc,
"ConnectRegistry() - Establishes a connection to a predefined registry handle\n"
" on another computer.\n"
"CreateKey() - Creates the specified key, or opens it if it already exists.\n"
"CreateKeyEx() - Creates the specified key, or opens it if it already exists.\n"
"DeleteKey() - Deletes the specified key.\n"
"DeleteKeyEx() - Deletes the specified key.\n"
"DeleteValue() - Removes a named value from the specified registry key.\n"
"EnumKey() - Enumerates subkeys of the specified open registry key.\n"
"EnumValue() - Enumerates values of the specified open registry key.\n"
Expand All @@ -69,6 +71,9 @@ PyDoc_STRVAR(module_doc,
"SaveKey() - Saves the specified key, and all its subkeys a file.\n"
"SetValue() - Associates a value with a specified key.\n"
"SetValueEx() - Stores data in the value field of an open registry key.\n"
"DisableReflectionKey() - Disables registry reflection for 32bit processes running on a 64bit OS.\n"
"EnableReflectionKey() - Restores registry reflection for a key.\n"
"QueryReflectionKey() - Determines the reflection state for a key.\n"
"\n"
"Special objects:\n"
"\n"
Expand Down
Loading