diff options
author | Victor Stinner <vstinner@python.org> | 2023-07-22 20:57:59 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-22 20:57:59 (GMT) |
commit | ee15844db88fab3a282d14325662bcfd026272ac (patch) | |
tree | 81d4609c7f896dada0fe2c238eaad1ac931696d4 /Include/internal | |
parent | 5e5a34ac3a827e040cd89426b1774fec2123336a (diff) | |
download | cpython-ee15844db88fab3a282d14325662bcfd026272ac.zip cpython-ee15844db88fab3a282d14325662bcfd026272ac.tar.gz cpython-ee15844db88fab3a282d14325662bcfd026272ac.tar.bz2 |
gh-106320: Move _PyMethodWrapper_Type to internal C API (#107064)
Diffstat (limited to 'Include/internal')
-rw-r--r-- | Include/internal/pycore_descrobject.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Include/internal/pycore_descrobject.h b/Include/internal/pycore_descrobject.h index 7637856..3cec59a 100644 --- a/Include/internal/pycore_descrobject.h +++ b/Include/internal/pycore_descrobject.h @@ -20,6 +20,8 @@ typedef struct { typedef propertyobject _PyPropertyObject; +extern PyTypeObject _PyMethodWrapper_Type; + #ifdef __cplusplus } #endif |