Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 877826a

Browse files
Regenerate Argument Clinic code for issue #23026.
1 parent fb51e65 commit 877826a

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

PC/clinic/winreg.c.h

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -907,7 +907,7 @@ PyDoc_STRVAR(winreg_SetValueEx__doc__,
907907
" An integer that specifies the type of the data, one of:\n"
908908
" REG_BINARY -- Binary data in any form.\n"
909909
" REG_DWORD -- A 32-bit number.\n"
910-
" REG_DWORD_LITTLE_ENDIAN -- A 32-bit number in little-endian format.\n"
910+
" REG_DWORD_LITTLE_ENDIAN -- A 32-bit number in little-endian format. Equivalent to REG_DWORD\n"
911911
" REG_DWORD_BIG_ENDIAN -- A 32-bit number in big-endian format.\n"
912912
" REG_EXPAND_SZ -- A null-terminated string that contains unexpanded\n"
913913
" references to environment variables (for example,\n"
@@ -917,6 +917,8 @@ PyDoc_STRVAR(winreg_SetValueEx__doc__,
917917
" by two null characters. Note that Python handles\n"
918918
" this termination automatically.\n"
919919
" REG_NONE -- No defined value type.\n"
920+
" REG_QWORD -- A 64-bit number.\n"
921+
" REG_QWORD_LITTLE_ENDIAN -- A 64-bit number in little-endian format. Equivalent to REG_QWORD.\n"
920922
" REG_RESOURCE_LIST -- A device-driver resource list.\n"
921923
" REG_SZ -- A null-terminated string.\n"
922924
" value\n"
@@ -1056,4 +1058,4 @@ winreg_QueryReflectionKey(PyModuleDef *module, PyObject *arg)
10561058
exit:
10571059
return return_value;
10581060
}
1059-
/*[clinic end generated code: output=5e346dccc296f9f1 input=a9049054013a1b77]*/
1061+
/*[clinic end generated code: output=0b71782e9b37b12a input=a9049054013a1b77]*/

PC/winreg.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1657,7 +1657,7 @@ the configuration registry to help the registry perform efficiently.
16571657
static PyObject *
16581658
winreg_SetValueEx_impl(PyModuleDef *module, HKEY key, Py_UNICODE *value_name,
16591659
PyObject *reserved, DWORD type, PyObject *value)
1660-
/*[clinic end generated code: output=ea092a935c361582 input=f1b16cbcc3ed4101]*/
1660+
/*[clinic end generated code: output=ea092a935c361582 input=900a9e3990bfb196]*/
16611661
{
16621662
BYTE *data;
16631663
DWORD len;

0 commit comments

Comments
 (0)