summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-04-25 10:55:58 (GMT)
committerGeorg Brandl <georg@python.org>2010-04-25 10:55:58 (GMT)
commitbb091e733c232290fdbc998083d17e5efd0a77f4 (patch)
tree9c11622caa69d2ee0f98fc0ab55d9991b39e3b34
parenta3f1e4cde712a77b76962f681a510dd155ac5c62 (diff)
downloadcpython-bb091e733c232290fdbc998083d17e5efd0a77f4.zip
cpython-bb091e733c232290fdbc998083d17e5efd0a77f4.tar.gz
cpython-bb091e733c232290fdbc998083d17e5efd0a77f4.tar.bz2
Patch from Tim Hatch: Minor spelling changes to _winreg docs.
-rw-r--r--Doc/library/_winreg.rst10
1 files changed, 5 insertions, 5 deletions
diff --git a/Doc/library/_winreg.rst b/Doc/library/_winreg.rst
index e0cfc67..01a8f37 100644
--- a/Doc/library/_winreg.rst
+++ b/Doc/library/_winreg.rst
@@ -28,7 +28,7 @@ This module offers the following functions:
.. function:: CloseKey(hkey)
- Closes a previously opened registry key. The hkey argument specifies a
+ Closes a previously opened registry key. The *hkey* argument specifies a
previously opened key.
Note that if *hkey* is not closed using this method (or via
@@ -457,13 +457,13 @@ This module offers the following functions:
.. function:: DisableReflectionKey(key)
Disables registry reflection for 32-bit processes running on a 64-bit
- Operating System.
+ operating system.
*key* is an already open key, or one of the predefined :const:`HKEY_\*`
constants.
Will generally raise :exc:`NotImplemented` if executed on a 32-bit
- Operating System.
+ operating system.
If the key is not on the reflection list, the function succeeds but has no
effect. Disabling reflection for a key does not affect reflection of any
@@ -478,7 +478,7 @@ This module offers the following functions:
constants.
Will generally raise :exc:`NotImplemented` if executed on a 32-bit
- Operating System.
+ operating system.
Restoring reflection for a key does not affect reflection of any subkeys.
@@ -493,7 +493,7 @@ This module offers the following functions:
Returns ``True`` if reflection is disabled.
Will generally raise :exc:`NotImplemented` if executed on a 32-bit
- Operating System.
+ operating system.
.. _handle-object: