Removed *.libs (now in ./sgi);
added gettext() method to TextEdit.py;
fixed string.atoi() to ignore leading zeros.
diff --git a/Lib/stdwin/TextEdit.py b/Lib/stdwin/TextEdit.py
index 540692c..698a7d5 100755
--- a/Lib/stdwin/TextEdit.py
+++ b/Lib/stdwin/TextEdit.py
@@ -27,6 +27,9 @@
 	def settext(self, text):
 		self.editor.settext(text)
 	#
+	def gettext(self):
+		return self.editor.gettext(text)
+	#
 	# Downcalls from parent to child
 	#
 	def destroy(self):