hope I got the merge wright...
[monitor.git] / Rpyc / Demo / testmodule.py
diff --git a/Rpyc/Demo/testmodule.py b/Rpyc/Demo/testmodule.py
deleted file mode 100644 (file)
index 20d2bc9..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-import time\r
-from Rpyc.Factories import Async\r
-\r
-def threadfunc(callback):\r
-    """this function will call the callback every second"""\r
-    callback = Async(callback)\r
-    try:\r
-        while True:\r
-            callback()\r
-            time.sleep(1)\r
-    except:\r
-        print "thread exiting"\r
-\r
-def printer(text):\r
-    print text\r
-\r
-def caller(func, *args):\r
-    func(*args)\r
-    
\ No newline at end of file