summaryrefslogtreecommitdiff
path: root/dbus_bindings/float.c
diff options
context:
space:
mode:
authorSimon McVittie <smcv@collabora.com>2021-09-14 16:48:18 +0100
committerSimon McVittie <smcv@collabora.com>2021-09-15 18:49:14 +0100
commit98cbe2b3ace53ef70738345548402cb4e74a4db7 (patch)
tree8214142a629fc4d45b0fc647860b7ae4bd6b9776 /dbus_bindings/float.c
parentabd5b946bb2ca9b6c4d2f5e455aaaae5f38946c6 (diff)
Remove support for Python 2
Python 2 reached EOL on 2020-01-01, and the latest version of AX_PYTHON_DEVEL breaks the build with Python 2. This seems as good a time as any to drop compatibility. Signed-off-by: Simon McVittie <smcv@collabora.com>
Diffstat (limited to 'dbus_bindings/float.c')
-rw-r--r--dbus_bindings/float.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/dbus_bindings/float.c b/dbus_bindings/float.c
index eeabd5b..3ec1c13 100644
--- a/dbus_bindings/float.c
+++ b/dbus_bindings/float.c
@@ -130,16 +130,10 @@ dbus_py_init_float_types(void)
{
DBusPyDouble_Type.tp_base = &DBusPyFloatBase_Type;
if (PyType_Ready(&DBusPyDouble_Type) < 0) return 0;
-#ifndef PY3
- DBusPyDouble_Type.tp_print = NULL;
-#endif
#ifdef WITH_DBUS_FLOAT32
DBusPyFloat_Type.tp_base = &DBusPyFloatBase_Type;
if (PyType_Ready(&DBusPyFloat_Type) < 0) return 0;
-#ifndef PY3
- DBusPyFloat_Type.tp_print = NULL;
-#endif
#endif
return 1;