diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2023-08-28 13:04:27 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-28 13:04:27 (GMT) |
commit | bc5356bb5d7e3eda44128e89a695c05066e0840b (patch) | |
tree | d9c923aaa06b991fd874ccb693fcb5bdf8fb015d /PC | |
parent | d90973340bf5ac35e0b35e99239cd37c46a30910 (diff) | |
download | cpython-bc5356bb5d7e3eda44128e89a695c05066e0840b.zip cpython-bc5356bb5d7e3eda44128e89a695c05066e0840b.tar.gz cpython-bc5356bb5d7e3eda44128e89a695c05066e0840b.tar.bz2 |
gh-108494: Argument Clinic: fix support of Limited C API (GH-108536)
Diffstat (limited to 'PC')
-rw-r--r-- | PC/winreg.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/PC/winreg.c b/PC/winreg.c index ed6258d..ee47a3f 100644 --- a/PC/winreg.c +++ b/PC/winreg.c @@ -220,6 +220,7 @@ class DWORD_converter(unsigned_long_converter): class HKEY_converter(CConverter): type = 'HKEY' converter = 'clinic_HKEY_converter' + broken_limited_capi = True def parse_arg(self, argname, displayname): return """ @@ -249,7 +250,7 @@ class self_return_converter(CReturnConverter): data.return_conversion.append( 'return_value = (PyObject *)_return_value;\n') [python start generated code]*/ -/*[python end generated code: output=da39a3ee5e6b4b0d input=17e645060c7b8ae1]*/ +/*[python end generated code: output=da39a3ee5e6b4b0d input=f8cb7034338aeaba]*/ #include "clinic/winreg.c.h" |