diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-04-17 05:32:47 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-04-17 05:32:47 (GMT) |
commit | 6a7b3a77b4b2be0badd24ee5f0fdbaa2e0e79c3d (patch) | |
tree | 69e2dda76d29c6ac33906e0ad2e1359c5bc8e0e4 /PC | |
parent | 50dd1f7dd68ed2f526adfebd5caa342e26da4517 (diff) | |
download | cpython-6a7b3a77b4b2be0badd24ee5f0fdbaa2e0e79c3d.zip cpython-6a7b3a77b4b2be0badd24ee5f0fdbaa2e0e79c3d.tar.gz cpython-6a7b3a77b4b2be0badd24ee5f0fdbaa2e0e79c3d.tar.bz2 |
Issue #26778: Fixed "a/an/and" typos in code comment and documentation.
Diffstat (limited to 'PC')
-rw-r--r-- | PC/clinic/winreg.c.h | 6 | ||||
-rw-r--r-- | PC/winreg.c | 8 |
2 files changed, 7 insertions, 7 deletions
diff --git a/PC/clinic/winreg.c.h b/PC/clinic/winreg.c.h index 22b332f..338e33d 100644 --- a/PC/clinic/winreg.c.h +++ b/PC/clinic/winreg.c.h @@ -120,7 +120,7 @@ PyDoc_STRVAR(winreg_ConnectRegistry__doc__, "ConnectRegistry($module, computer_name, key, /)\n" "--\n" "\n" -"Establishes a connection to the registry on on another computer.\n" +"Establishes a connection to the registry on another computer.\n" "\n" " computer_name\n" " The name of the remote computer, of the form r\"\\\\computername\". If\n" @@ -913,7 +913,7 @@ PyDoc_STRVAR(winreg_SetValueEx__doc__, " references to environment variables (for example,\n" " %PATH%).\n" " REG_LINK -- A Unicode symbolic link.\n" -" REG_MULTI_SZ -- An sequence of null-terminated strings, terminated\n" +" REG_MULTI_SZ -- A sequence of null-terminated strings, terminated\n" " by two null characters. Note that Python handles\n" " this termination automatically.\n" " REG_NONE -- No defined value type.\n" @@ -1056,4 +1056,4 @@ winreg_QueryReflectionKey(PyModuleDef *module, PyObject *arg) exit: return return_value; } -/*[clinic end generated code: output=71f5bc30b646807b input=a9049054013a1b77]*/ +/*[clinic end generated code: output=5e346dccc296f9f1 input=a9049054013a1b77]*/ diff --git a/PC/winreg.c b/PC/winreg.c index 3313202..d1c3f39 100644 --- a/PC/winreg.c +++ b/PC/winreg.c @@ -792,7 +792,7 @@ winreg.ConnectRegistry -> HKEY The predefined key to connect to. / -Establishes a connection to the registry on on another computer. +Establishes a connection to the registry on another computer. The return value is the handle of the opened key. If the function fails, an OSError exception is raised. @@ -801,7 +801,7 @@ If the function fails, an OSError exception is raised. static HKEY winreg_ConnectRegistry_impl(PyModuleDef *module, Py_UNICODE *computer_name, HKEY key) -/*[clinic end generated code: output=5c52f6f7ba6e7b46 input=9a056558ce318433]*/ +/*[clinic end generated code: output=5c52f6f7ba6e7b46 input=5f98a891a347e68e]*/ { HKEY retKey; long rc; @@ -1605,7 +1605,7 @@ winreg.SetValueEx references to environment variables (for example, %PATH%). REG_LINK -- A Unicode symbolic link. - REG_MULTI_SZ -- An sequence of null-terminated strings, terminated + REG_MULTI_SZ -- A sequence of null-terminated strings, terminated by two null characters. Note that Python handles this termination automatically. REG_NONE -- No defined value type. @@ -1631,7 +1631,7 @@ the configuration registry to help the registry perform efficiently. static PyObject * winreg_SetValueEx_impl(PyModuleDef *module, HKEY key, Py_UNICODE *value_name, PyObject *reserved, DWORD type, PyObject *value) -/*[clinic end generated code: output=ea092a935c361582 input=e73dec535ebeea7d]*/ +/*[clinic end generated code: output=ea092a935c361582 input=f1b16cbcc3ed4101]*/ { BYTE *data; DWORD len; |