# HG changeset patch # User Laurent Bessard # Date 1368184518 -7200 # Node ID 35d772ec1a767cd9a1bdf0665a8050f9f13c9002 # Parent 34db4294c177975b69463547138c99b24403325d Removed some prints for code debugging diff -r 34db4294c177 -r 35d772ec1a76 graphics/GraphicCommons.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]) diff -r 34db4294c177 -r 35d772ec1a76 py_ext/PythonFileCTNMixin.py --- 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"