From c28505d0ce113f0b3596ea289e1130ed310ab8b8 Mon Sep 17 00:00:00 2001 From: Felix Domke Date: Mon, 21 Mar 2005 22:39:09 +0000 Subject: [PATCH] added tools --- tools.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 tools.py diff --git a/tools.py b/tools.py new file mode 100644 index 0000000..32f000e --- /dev/null +++ b/tools.py @@ -0,0 +1,7 @@ + +def CONNECT(slot, fnc): + slot.get().append(fnc) + +def DISCONNECT(slot, fnc): + slot.get().remove(fnc) + -- 2.7.4