summaryrefslogtreecommitdiff
path: root/dbus_bindings/float.c
diff options
context:
space:
mode:
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;