aboutsummaryrefslogtreecommitdiff
path: root/tools.py
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2005-03-21 22:39:09 +0000
committerFelix Domke <tmbinc@elitedvb.net>2005-03-21 22:39:09 +0000
commitc28505d0ce113f0b3596ea289e1130ed310ab8b8 (patch)
tree8b0ef1e753e0ca67dd8f84d8e6002742fc76806e /tools.py
parent208747f6553a9cf68b26860d8c3c4999d180f5fb (diff)
downloadenigma2-c28505d0ce113f0b3596ea289e1130ed310ab8b8.tar.gz
enigma2-c28505d0ce113f0b3596ea289e1130ed310ab8b8.zip
added tools
Diffstat (limited to 'tools.py')
-rw-r--r--tools.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/tools.py b/tools.py
new file mode 100644
index 00000000..32f000e9
--- /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)
+