From dca6bd87efd2037f070fa9694e6a8e738cb4bb2c Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 10 Sep 2008 22:49:11 +0000 Subject: [PATCH] removed debug print --- source/gameengine/GamePlayer/ghost/GPG_Application.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/gameengine/GamePlayer/ghost/GPG_Application.cpp b/source/gameengine/GamePlayer/ghost/GPG_Application.cpp index 3d9ae66c9ea..f35e2894f65 100644 --- a/source/gameengine/GamePlayer/ghost/GPG_Application.cpp +++ b/source/gameengine/GamePlayer/ghost/GPG_Application.cpp @@ -745,7 +745,8 @@ void GPG_Application::stopEngine() #endif if (pyGlobalDictMarshal) { m_pyGlobalDictString_Length = PyString_Size(pyGlobalDictMarshal); - PyObject_Print(pyGlobalDictMarshal, stderr, 0); + // for testing only + // PyObject_Print(pyGlobalDictMarshal, stderr, 0); m_pyGlobalDictString = static_cast (malloc(m_pyGlobalDictString_Length)); memcpy(m_pyGlobalDictString, PyString_AsString(pyGlobalDictMarshal), m_pyGlobalDictString_Length); } else {