summaryrefslogtreecommitdiffstats
path: root/pyuno
diff options
context:
space:
mode:
Diffstat (limited to 'pyuno')
-rw-r--r--pyuno/source/module/pyuno.cxx3
-rw-r--r--pyuno/source/module/pyuno_callable.cxx3
-rw-r--r--pyuno/source/module/pyuno_iterator.cxx6
-rw-r--r--pyuno/source/module/pyuno_runtime.cxx3
-rw-r--r--pyuno/source/module/pyuno_struct.cxx3
5 files changed, 18 insertions, 0 deletions
diff --git a/pyuno/source/module/pyuno.cxx b/pyuno/source/module/pyuno.cxx
index bd4904d5f7..a589c72ba3 100644
--- a/pyuno/source/module/pyuno.cxx
+++ b/pyuno/source/module/pyuno.cxx
@@ -1667,6 +1667,9 @@ static PyTypeObject PyUNOType =
#pragma clang diagnostic pop
#endif
#endif
+#if PY_VERSION_HEX >= 0x030C00A1
+ , 0 // tp_watched
+#endif
#endif
#endif
};
diff --git a/pyuno/source/module/pyuno_callable.cxx b/pyuno/source/module/pyuno_callable.cxx
index f22de316b7..8f19fc8eb6 100644
--- a/pyuno/source/module/pyuno_callable.cxx
+++ b/pyuno/source/module/pyuno_callable.cxx
@@ -244,6 +244,9 @@ static PyTypeObject PyUNO_callable_Type =
#pragma clang diagnostic pop
#endif
#endif
+#if PY_VERSION_HEX >= 0x030C00A1
+ , 0 // tp_watched
+#endif
#endif
#endif
};
diff --git a/pyuno/source/module/pyuno_iterator.cxx b/pyuno/source/module/pyuno_iterator.cxx
index 134f318a10..2fc70a32fc 100644
--- a/pyuno/source/module/pyuno_iterator.cxx
+++ b/pyuno/source/module/pyuno_iterator.cxx
@@ -177,6 +177,9 @@ static PyTypeObject PyUNO_iterator_Type =
#pragma clang diagnostic pop
#endif
#endif
+#if PY_VERSION_HEX >= 0x030C00A1
+ , 0 // tp_watched
+#endif
#endif
#endif
};
@@ -323,6 +326,9 @@ static PyTypeObject PyUNO_list_iterator_Type =
#pragma clang diagnostic pop
#endif
#endif
+#if PY_VERSION_HEX >= 0x030C00A1
+ , 0 // tp_watched
+#endif
#endif
#endif
};
diff --git a/pyuno/source/module/pyuno_runtime.cxx b/pyuno/source/module/pyuno_runtime.cxx
index cb95e5a46d..91e971fdd5 100644
--- a/pyuno/source/module/pyuno_runtime.cxx
+++ b/pyuno/source/module/pyuno_runtime.cxx
@@ -139,6 +139,9 @@ static PyTypeObject RuntimeImpl_Type =
#pragma clang diagnostic pop
#endif
#endif
+#if PY_VERSION_HEX >= 0x030C00A1
+ , 0 // tp_watched
+#endif
#endif
#endif
};
diff --git a/pyuno/source/module/pyuno_struct.cxx b/pyuno/source/module/pyuno_struct.cxx
index c8fd7e9879..364f277601 100644
--- a/pyuno/source/module/pyuno_struct.cxx
+++ b/pyuno/source/module/pyuno_struct.cxx
@@ -354,6 +354,9 @@ static PyTypeObject PyUNOStructType =
#pragma clang diagnostic pop
#endif
#endif
+#if PY_VERSION_HEX >= 0x030C00A1
+ , 0 // tp_watched
+#endif
#endif
#endif
};