diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2014-01-21 19:49:22 (GMT) |
---|---|---|
committer | Zachary Ware <zachary.ware@gmail.com> | 2014-01-21 19:49:22 (GMT) |
commit | f7d2874d3097054e030f0169f5eed92af488acbe (patch) | |
tree | 24ee48271f79261b22ff9a76accbe57a54e6c9f0 /Doc/library/winreg.rst | |
parent | 7ed509a38f49ccdff4002abe2311a40a1e020af3 (diff) | |
download | cpython-f7d2874d3097054e030f0169f5eed92af488acbe.zip cpython-f7d2874d3097054e030f0169f5eed92af488acbe.tar.gz cpython-f7d2874d3097054e030f0169f5eed92af488acbe.tar.bz2 |
Issue #20301: Mention the correct KEY_* value as the default
for 'access' in winreg.DeleteKeyEx. Already correct in the docs
function signature and docstring. Noticed by Justin Foo.
Diffstat (limited to 'Doc/library/winreg.rst')
-rw-r--r-- | Doc/library/winreg.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/winreg.rst b/Doc/library/winreg.rst index 60f3bd9..06bcb86 100644 --- a/Doc/library/winreg.rst +++ b/Doc/library/winreg.rst @@ -146,7 +146,7 @@ This module offers the following functions: *reserved* is a reserved integer, and must be zero. The default is zero. *access* is an integer that specifies an access mask that describes the desired - security access for the key. Default is :const:`KEY_ALL_ACCESS`. See + security access for the key. Default is :const:`KEY_WOW64_64KEY`. See :ref:`Access Rights <access-rights>` for other allowed values. *This method can not delete keys with subkeys.* |