From: Guido van Rossum Date: Thu, 6 Aug 1992 22:33:41 +0000 (+0000) Subject: Removed *.libs (now in ./sgi); X-Git-Tag: v0.9.8~255 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2d4aa4f5d43842bc049752ab8d5ffa3d2880cbe6;p=thirdparty%2FPython%2Fcpython.git Removed *.libs (now in ./sgi); added gettext() method to TextEdit.py; fixed string.atoi() to ignore leading zeros. --- diff --git a/Lib/lib-stdwin/TextEdit.py b/Lib/lib-stdwin/TextEdit.py index 540692ce2431..698a7d5ca67a 100644 --- a/Lib/lib-stdwin/TextEdit.py +++ b/Lib/lib-stdwin/TextEdit.py @@ -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): diff --git a/Lib/stdwin/TextEdit.py b/Lib/stdwin/TextEdit.py index 540692ce2431..698a7d5ca67a 100755 --- a/Lib/stdwin/TextEdit.py +++ b/Lib/stdwin/TextEdit.py @@ -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): diff --git a/Lib/string.py b/Lib/string.py index cfb977fcc3f1..94e91570c5c7 100644 --- a/Lib/string.py +++ b/Lib/string.py @@ -102,12 +102,16 @@ def index(s, sub): # Convert string to integer atoi_error = 'non-numeric argument to string.atoi' def atoi(str): + sign = '' s = str - if s[:1] in '+-': s = s[1:] + if s[:1] in '+-': + sign = s[0] + s = s[1:] if not s: raise atoi_error, str + while s[0] == '0' and len(s) > 1: s = s[1:] for c in s: if c not in digits: raise atoi_error, str - return eval(str) + return eval(sign + s) # Left-justify a string def ljust(s, width): diff --git a/Lib/stringold.py b/Lib/stringold.py index cfb977fcc3f1..94e91570c5c7 100644 --- a/Lib/stringold.py +++ b/Lib/stringold.py @@ -102,12 +102,16 @@ def index(s, sub): # Convert string to integer atoi_error = 'non-numeric argument to string.atoi' def atoi(str): + sign = '' s = str - if s[:1] in '+-': s = s[1:] + if s[:1] in '+-': + sign = s[0] + s = s[1:] if not s: raise atoi_error, str + while s[0] == '0' and len(s) > 1: s = s[1:] for c in s: if c not in digits: raise atoi_error, str - return eval(str) + return eval(sign + s) # Left-justify a string def ljust(s, width):