diff options
author | Brian Curtin <brian.curtin@gmail.com> | 2010-04-24 17:23:03 (GMT) |
---|---|---|
committer | Brian Curtin <brian.curtin@gmail.com> | 2010-04-24 17:23:03 (GMT) |
commit | 44bb1f7eabd850db1e03574debbba8e40d897e1c (patch) | |
tree | d6d8674eec4c2570523eb9c14467aca6f62c4546 /Doc | |
parent | e149166412f59fd46a907bf66bf704317b8b06f3 (diff) | |
download | cpython-44bb1f7eabd850db1e03574debbba8e40d897e1c.zip cpython-44bb1f7eabd850db1e03574debbba8e40d897e1c.tar.gz cpython-44bb1f7eabd850db1e03574debbba8e40d897e1c.tar.bz2 |
Backport fix of #5774 (only OpenKey applies here).
Diffstat (limited to 'Doc')
-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 473bfe3..4b2ed41 100644 --- a/Doc/library/winreg.rst +++ b/Doc/library/winreg.rst @@ -183,7 +183,7 @@ This module offers the following functions: :const:`HKEY_LOCAL_MACHINE` tree. This may or may not be true. -.. function:: OpenKey(key, sub_key, res=0, sam=KEY_READ) +.. function:: OpenKey(key, sub_key[, res[, sam]]) Opens the specified key, returning a :dfn:`handle object` |