diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2010-02-12 00:31:13 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2010-02-12 00:31:13 (GMT) |
commit | 36e1f2de0743e728a8e89d362f1b4981abfd52ae (patch) | |
tree | 1cee76c36fe6a7e37ee0095797623d1519d0c1a9 /Doc/library/winreg.rst | |
parent | 9419be9864bc85315f29b802d2b750b7d6e25c79 (diff) | |
download | cpython-36e1f2de0743e728a8e89d362f1b4981abfd52ae.zip cpython-36e1f2de0743e728a8e89d362f1b4981abfd52ae.tar.gz cpython-36e1f2de0743e728a8e89d362f1b4981abfd52ae.tar.bz2 |
Merged revisions 78164 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r78164 | ezio.melotti | 2010-02-12 02:28:42 +0200 (Fri, 12 Feb 2010) | 9 lines
Merged revisions 78162 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r78162 | ezio.melotti | 2010-02-12 01:50:57 +0200 (Fri, 12 Feb 2010) | 1 line
#7907: fix wrong function name in doc. Patch by Brian Curtin.
........
................
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 9932c60..473bfe3 100644 --- a/Doc/library/winreg.rst +++ b/Doc/library/winreg.rst @@ -367,7 +367,7 @@ This module offers the following functions: key. The key identified by the key parameter must have been opened with :const:`KEY_SET_VALUE` access. - To open the key, use the :func:`CreateKeyEx` or :func:`OpenKey` methods. + To open the key, use the :func:`CreateKey` or :func:`OpenKey` methods. Value lengths are limited by available memory. Long values (more than 2048 bytes) should be stored as files with the filenames stored in the configuration |