Name: newt
%define version 0.50
Version: %{version}
-Release: 9
+Release: 10
Copyright: LGPL
Group: System Environment/Libraries
Source: ftp://ftp.redhat.com/pub/redhat/code/newt/newt-%{version}.tar.gz
%changelog
* Wed Aug 25 1999 Matt Wilson <msw@redhat.com>
- fixed snack callback function refcounts, as well as optional data args
+- fixed suspend callback ref counts
* Mon Aug 23 1999 Matt Wilson <msw@redhat.com>
- added buttons argument to entrywindow
}
static PyObject * finishScreen(PyObject * s, PyObject * args) {
+ Py_XDECREF (suspend.cb);
+ Py_XDECREF (suspend.data);
+
newtFinished();
Py_INCREF(Py_None);
return Py_None;