cyphesis/rulesets/PythonScript.cpp

15 lines
326 B
C++
Raw Normal View History

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