[Python-checkins] r80468 - python/trunk/Doc/library/_winreg.rst

georg.brandl python-checkins at python.org
Sun Apr 25 12:55:58 CEST 2010


Author: georg.brandl
Date: Sun Apr 25 12:55:58 2010
New Revision: 80468

Log:
Patch from Tim Hatch: Minor spelling changes to _winreg docs.

Modified:
   python/trunk/Doc/library/_winreg.rst

Modified: python/trunk/Doc/library/_winreg.rst
==============================================================================
--- python/trunk/Doc/library/_winreg.rst	(original)
+++ python/trunk/Doc/library/_winreg.rst	Sun Apr 25 12:55:58 2010
@@ -28,7 +28,7 @@
 
 .. 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 @@
 .. 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 @@
    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 @@
    Returns ``True`` if reflection is disabled.
 
    Will generally raise :exc:`NotImplemented` if executed on a 32-bit
-   Operating System.
+   operating system.
 
 
 .. _handle-object:


More information about the Python-checkins mailing list