Removed *.libs (now in ./sgi);

added gettext() method to TextEdit.py;
fixed string.atoi() to ignore leading zeros.
This commit is contained in:
Guido van Rossum 1992-08-06 22:33:41 +00:00
parent de126a6ff8
commit 2d4aa4f5d4
4 changed files with 18 additions and 4 deletions

View file

@ -27,6 +27,9 @@ class TextEdit:
def settext(self, text):
self.editor.settext(text)
#
def gettext(self):
return self.editor.gettext(text)
#
# Downcalls from parent to child
#
def destroy(self):