Removed some prints for code debugging
authorLaurent Bessard
Fri, 10 May 2013 13:15:18 +0200
changeset 1120 35d772ec1a76
parent 1119 34db4294c177
child 1121 d3838e8f1b90
Removed some prints for code debugging
graphics/GraphicCommons.py
py_ext/PythonFileCTNMixin.py
--- a/graphics/GraphicCommons.py	Fri May 10 13:07:41 2013 +0200
+++ b/graphics/GraphicCommons.py	Fri May 10 13:15:18 2013 +0200
@@ -2047,7 +2047,6 @@
     def Clone(self, parent, connectors = {}, dx = 0, dy = 0):
         start_connector = connectors.get(self.StartConnected, None)
         end_connector = connectors.get(self.EndConnected, None)
-        print self.StartConnected, "=>", start_connector, ",", self.EndConnected, "=>", end_connector
         if start_connector is not None and end_connector is not None:
             wire = Wire(parent)
             wire.SetPoints([(point.x + dx, point.y + dy) for point in self.Points])
--- a/py_ext/PythonFileCTNMixin.py	Fri May 10 13:07:41 2013 +0200
+++ b/py_ext/PythonFileCTNMixin.py	Fri May 10 13:15:18 2013 +0200
@@ -78,7 +78,6 @@
             ("__publish_", "", "", self.CodeFile.publishFunction),]:
             text += "def %s%s(%s):\n" % (func, location_str, args)
             lines = code_object.gettext().strip().splitlines()
-            print lines
             if len(lines) > 0 or return_code != "":
                 for line in lines:
                     text += "    " + line + "\n"