runtime/__init__.py
changeset 209 08dc3d064cb5
parent 203 cb9901076a21
child 344 25b7b7f854bc
--- a/runtime/__init__.py	Thu Aug 21 13:21:37 2008 +0200
+++ b/runtime/__init__.py	Thu Aug 21 17:17:36 2008 +0200
@@ -2,12 +2,5 @@
 
 import os
 
-def code(name):
-    filename = os.path.join(os.path.split(__file__)[0],name + ".c")
-    if os.path.exists(filename):
-        return open(filename).read()
-    else:
-        return "#error %s target not implemented !!!\n"%name
-
 from PLCObject import PLCObject
 import ServicePublisher