diff options
author | Brian Curtin <brian.curtin@gmail.com> | 2010-04-24 17:14:35 (GMT) |
---|---|---|
committer | Brian Curtin <brian.curtin@gmail.com> | 2010-04-24 17:14:35 (GMT) |
commit | 2ec87deede7a5452fe336951ab30d2eb7bc4da47 (patch) | |
tree | 0f0175d658e09458d3ca5b9cc8a8c366549505d4 | |
parent | 520c834fbb6213779ff5ef21a2fe965c0a62c615 (diff) | |
download | cpython-2ec87deede7a5452fe336951ab30d2eb7bc4da47.zip cpython-2ec87deede7a5452fe336951ab30d2eb7bc4da47.tar.gz cpython-2ec87deede7a5452fe336951ab30d2eb7bc4da47.tar.bz2 |
Backport fix of #5774 (only OpenKey applies here).
-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 28be590..f3e59be 100644 --- a/Doc/library/_winreg.rst +++ b/Doc/library/_winreg.rst @@ -193,7 +193,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 :ref:`handle object <handle-object>`. |