<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">--- libshiboken/sbkenum.cpp	2015-10-14 20:12:33.000000000 +0200
+++ libshiboken/sbkenum.cpp	2020-10-20 05:08:31.000000000 +0200
@@ -529,7 +529,9 @@
     ::memset(type, 0, sizeof(SbkEnumType));
     Py_TYPE(type) = &amp;SbkEnumType_Type;
     type-&gt;tp_basicsize = sizeof(SbkEnumObject);
+#ifndef IS_PY3K
     type-&gt;tp_print = &amp;SbkEnumObject_print;
+#endif
     type-&gt;tp_repr = &amp;SbkEnumObject_repr;
     type-&gt;tp_str = &amp;SbkEnumObject_repr;
     type-&gt;tp_flags = Py_TPFLAGS_DEFAULT|Py_TPFLAGS_CHECKTYPES;
</pre></body></html>