From 3685bac68fb331aa544f0fc2fa79bd57a7a0bedb Mon Sep 17 00:00:00 2001
From: Tiago Freitas Pereira <tiagofrepereira@gmail.com>
Date: Wed, 18 Feb 2015 14:13:51 +0100
Subject: [PATCH] Removed the flag Py_TPFLAGS_HAVE_INPLACEOPS since the flag
 Py_TPFLAGS_DEFAULT already flag this bit

---
 bob/learn/em/gmm_stats.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bob/learn/em/gmm_stats.cpp b/bob/learn/em/gmm_stats.cpp
index b6afe2d..cda8d38 100644
--- a/bob/learn/em/gmm_stats.cpp
+++ b/bob/learn/em/gmm_stats.cpp
@@ -597,7 +597,7 @@ bool init_BobLearnEMGMMStats(PyObject* module)
   // initialize the type struct
   PyBobLearnEMGMMStats_Type.tp_name = GMMStats_doc.name();
   PyBobLearnEMGMMStats_Type.tp_basicsize = sizeof(PyBobLearnEMGMMStatsObject);
-  PyBobLearnEMGMMStats_Type.tp_flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_INPLACEOPS;
+  PyBobLearnEMGMMStats_Type.tp_flags = Py_TPFLAGS_DEFAULT;
   PyBobLearnEMGMMStats_Type.tp_doc = GMMStats_doc.doc();
 
   // set the functions
-- 
GitLab