// This file may be redistributed and modified only under the terms of // the GNU General Public License (See COPYING for details). // Copyright (C) 2005 Alistair Riddoch #include #include "PythonArithmeticScript.h" PythonArithmeticScript::PythonArithmeticScript(PyObject * o) : m_script(o) { } PythonArithmeticScript::~PythonArithmeticScript() { Py_DECREF(m_script); }