summaryrefslogtreecommitdiffstats
path: root/Include/internal
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2023-07-22 20:57:59 (GMT)
committerGitHub <noreply@github.com>2023-07-22 20:57:59 (GMT)
commitee15844db88fab3a282d14325662bcfd026272ac (patch)
tree81d4609c7f896dada0fe2c238eaad1ac931696d4 /Include/internal
parent5e5a34ac3a827e040cd89426b1774fec2123336a (diff)
downloadcpython-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.h2
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