diff options
-rw-r--r-- | Lib/string.py | 2 | ||||
-rw-r--r-- | Lib/stringold.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Lib/string.py b/Lib/string.py index 2a4feae..3790357 100644 --- a/Lib/string.py +++ b/Lib/string.py @@ -83,7 +83,7 @@ def splitfields(s, sep): index_error = 'substring not found in string.index' def index(s, sub): n = len(sub) - for i in range(len(s) - n): + for i in range(len(s) + 1 - n): if sub = s[i:i+n]: return i raise index_error, (s, sub) diff --git a/Lib/stringold.py b/Lib/stringold.py index 2a4feae..3790357 100644 --- a/Lib/stringold.py +++ b/Lib/stringold.py @@ -83,7 +83,7 @@ def splitfields(s, sep): index_error = 'substring not found in string.index' def index(s, sub): n = len(sub) - for i in range(len(s) - n): + for i in range(len(s) + 1 - n): if sub = s[i:i+n]: return i raise index_error, (s, sub) |