Fix bug #670845: cut & clear in the output window now work, in that
  - clear clears the entire buffer
  - cut doesn't cut, but copies.
diff --git a/Mac/Tools/IDE/PyConsole.py b/Mac/Tools/IDE/PyConsole.py
index 9a4a44b..3fae413 100644
--- a/Mac/Tools/IDE/PyConsole.py
+++ b/Mac/Tools/IDE/PyConsole.py
@@ -249,6 +249,12 @@
 		f.close()
 		fss.SetCreatorType(W._signature, 'TEXT')
 	
+	def domenu_cut(self, *args):
+		self.domenu_copy(*args)
+	
+	def domenu_clear(self, *args):
+		self.set('')
+
 
 class PyOutput: