summaryrefslogtreecommitdiffstats
path: root/PC
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-06-09 13:01:19 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-06-09 13:01:19 (GMT)
commit877826ad3db74e7afe2d48fb358e02560b325943 (patch)
treef533c6ffc64a20f7a05a2fd5b6f0e1698bb8529b /PC
parentfb51e6528947f86f4c64a409966deb8cb1267083 (diff)
downloadcpython-877826ad3db74e7afe2d48fb358e02560b325943.zip
cpython-877826ad3db74e7afe2d48fb358e02560b325943.tar.gz
cpython-877826ad3db74e7afe2d48fb358e02560b325943.tar.bz2
Regenerate Argument Clinic code for issue #23026.
Diffstat (limited to 'PC')
-rw-r--r--PC/clinic/winreg.c.h6
-rw-r--r--PC/winreg.c2
2 files changed, 5 insertions, 3 deletions
diff --git a/PC/clinic/winreg.c.h b/PC/clinic/winreg.c.h
index 338e33d..5176130 100644
--- a/PC/clinic/winreg.c.h
+++ b/PC/clinic/winreg.c.h
@@ -907,7 +907,7 @@ PyDoc_STRVAR(winreg_SetValueEx__doc__,
" An integer that specifies the type of the data, one of:\n"
" REG_BINARY -- Binary data in any form.\n"
" REG_DWORD -- A 32-bit number.\n"
-" REG_DWORD_LITTLE_ENDIAN -- A 32-bit number in little-endian format.\n"
+" REG_DWORD_LITTLE_ENDIAN -- A 32-bit number in little-endian format. Equivalent to REG_DWORD\n"
" REG_DWORD_BIG_ENDIAN -- A 32-bit number in big-endian format.\n"
" REG_EXPAND_SZ -- A null-terminated string that contains unexpanded\n"
" references to environment variables (for example,\n"
@@ -917,6 +917,8 @@ PyDoc_STRVAR(winreg_SetValueEx__doc__,
" by two null characters. Note that Python handles\n"
" this termination automatically.\n"
" REG_NONE -- No defined value type.\n"
+" REG_QWORD -- A 64-bit number.\n"
+" REG_QWORD_LITTLE_ENDIAN -- A 64-bit number in little-endian format. Equivalent to REG_QWORD.\n"
" REG_RESOURCE_LIST -- A device-driver resource list.\n"
" REG_SZ -- A null-terminated string.\n"
" value\n"
@@ -1056,4 +1058,4 @@ winreg_QueryReflectionKey(PyModuleDef *module, PyObject *arg)
exit:
return return_value;
}
-/*[clinic end generated code: output=5e346dccc296f9f1 input=a9049054013a1b77]*/
+/*[clinic end generated code: output=0b71782e9b37b12a input=a9049054013a1b77]*/
diff --git a/PC/winreg.c b/PC/winreg.c
index d704d66..293825d 100644
--- a/PC/winreg.c
+++ b/PC/winreg.c
@@ -1657,7 +1657,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=f1b16cbcc3ed4101]*/
+/*[clinic end generated code: output=ea092a935c361582 input=900a9e3990bfb196]*/
{
BYTE *data;
DWORD len;