From: Robin Dunn Date: Thu, 15 Jan 2004 23:34:18 +0000 (+0000) Subject: prevent checking for empty string X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/50940aad97e675f0ae76e650f62c8b17ad036d8b prevent checking for empty string git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25200 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/wxPython/wx/lib/maskededit.py b/wxPython/wx/lib/maskededit.py index 3b1630e153..9eaf4b969c 100644 --- a/wxPython/wx/lib/maskededit.py +++ b/wxPython/wx/lib/maskededit.py @@ -4444,7 +4444,8 @@ class MaskedEditMixin: dbg('text: "%s"' % text) if self._signOk: signpos = self._decimalpos - (len(text[:self._decimalpos].lstrip()) + 1) - if text[signpos+1] in ('-','('): + # prevent checking for empty string - Tomo - Wed 14 Jan 2004 03:19:09 PM CET + if len(text) >= signpos+1 and text[signpos+1] in ('-','('): signpos += 1 else: signpos = -1