mirror of
https://github.com/python/cpython.git
synced 2025-12-23 09:19:18 +00:00
[3.13] gh-140826: Update winreg's docstring (GH-141050) (GH-141200) (GH-141209)
Some checks are pending
Tests / Check if the ABI has changed (push) Blocked by required conditions
Tests / Check if Autoconf files are up to date (push) Blocked by required conditions
Tests / (push) Blocked by required conditions
Tests / Android (aarch64) (push) Blocked by required conditions
Tests / Android (x86_64) (push) Blocked by required conditions
Tests / WASI (push) Blocked by required conditions
Tests / Hypothesis tests on Ubuntu (push) Blocked by required conditions
Tests / Address sanitizer (push) Blocked by required conditions
Tests / Sanitizers (push) Blocked by required conditions
Tests / Windows MSI (push) Blocked by required conditions
Tests / Change detection (push) Waiting to run
Tests / Docs (push) Blocked by required conditions
Tests / Check if generated files are up to date (push) Blocked by required conditions
Tests / Ubuntu SSL tests with OpenSSL (push) Blocked by required conditions
Tests / CIFuzz (push) Blocked by required conditions
Tests / All required checks pass (push) Blocked by required conditions
Lint / lint (push) Waiting to run
Some checks are pending
Tests / Check if the ABI has changed (push) Blocked by required conditions
Tests / Check if Autoconf files are up to date (push) Blocked by required conditions
Tests / (push) Blocked by required conditions
Tests / Android (aarch64) (push) Blocked by required conditions
Tests / Android (x86_64) (push) Blocked by required conditions
Tests / WASI (push) Blocked by required conditions
Tests / Hypothesis tests on Ubuntu (push) Blocked by required conditions
Tests / Address sanitizer (push) Blocked by required conditions
Tests / Sanitizers (push) Blocked by required conditions
Tests / Windows MSI (push) Blocked by required conditions
Tests / Change detection (push) Waiting to run
Tests / Docs (push) Blocked by required conditions
Tests / Check if generated files are up to date (push) Blocked by required conditions
Tests / Ubuntu SSL tests with OpenSSL (push) Blocked by required conditions
Tests / CIFuzz (push) Blocked by required conditions
Tests / All required checks pass (push) Blocked by required conditions
Lint / lint (push) Waiting to run
(cherry picked from commitbea0d3d12b) (cherry picked from commitb3377c3b41) Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> Co-authored-by: AN Long <aisk@users.noreply.github.com>
This commit is contained in:
parent
0efb799852
commit
dfbc5eb80e
1 changed files with 4 additions and 1 deletions
|
|
@ -53,6 +53,7 @@ PyDoc_STRVAR(module_doc,
|
|||
"CreateKey() - Creates the specified key, or opens it if it already exists.\n"
|
||||
"DeleteKey() - Deletes the specified key.\n"
|
||||
"DeleteValue() - Removes a named value from the specified registry key.\n"
|
||||
"DeleteTree() - Deletes the specified key and all its subkeys and values recursively.\n"
|
||||
"EnumKey() - Enumerates subkeys of the specified open registry key.\n"
|
||||
"EnumValue() - Enumerates values of the specified open registry key.\n"
|
||||
"ExpandEnvironmentStrings() - Expand the env strings in a REG_EXPAND_SZ\n"
|
||||
|
|
@ -103,7 +104,9 @@ PyDoc_STRVAR(PyHKEY_doc,
|
|||
"\n"
|
||||
"Operations:\n"
|
||||
"__bool__ - Handles with an open object return true, otherwise false.\n"
|
||||
"__int__ - Converting a handle to an integer returns the Win32 handle.");
|
||||
"__int__ - Converting a handle to an integer returns the Win32 handle.\n"
|
||||
"__enter__, __exit__ - Context manager support for 'with' statement,\n"
|
||||
"automatically closes handle.");
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue