Fix bugf in index -- last char would not be checked.
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 @@
 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)