summaryrefslogtreecommitdiff
path: root/gi
diff options
context:
space:
mode:
authorChristoph Reiter <reiter.christoph@gmail.com>2019-06-07 16:31:23 +0200
committerChristoph Reiter <reiter.christoph@gmail.com>2019-06-07 16:57:47 +0200
commit07cb8d7dfc2fe93c3dd0dc4c4ddb88556de048e0 (patch)
treee11b71d4bf9b6a55bd9b2c159e877c6df2d4dcef /gi
parente8402ed0d819f8640b2fefe066187f7b60e76649 (diff)
downloadpygobject-07cb8d7dfc2fe93c3dd0dc4c4ddb88556de048e0.tar.gz
Don't use PyTypeObject.tp_print with Python 3
It was only used with Python 2 and unused/reserved with Python 3. Python 3.8 has renamed the slot and is now using it for something different which breaks our build.
Diffstat (limited to 'gi')
-rw-r--r--gi/pygobject-object.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/gi/pygobject-object.c b/gi/pygobject-object.c
index dbf46e1e..39c03ca3 100644
--- a/gi/pygobject-object.c
+++ b/gi/pygobject-object.c
@@ -878,7 +878,10 @@ pygobject_inherit_slots(PyTypeObject *type, PyObject *bases, gboolean check_for_
offsetof(PyTypeObject, tp_iter),
offsetof(PyTypeObject, tp_repr),
offsetof(PyTypeObject, tp_str),
- offsetof(PyTypeObject, tp_print) };
+#if PY_VERSION_HEX < 0x03000000
+ offsetof(PyTypeObject, tp_print),
+#endif
+ };
gsize i;
/* Happens when registering gobject.GObject itself, at least. */