Added split whitespace checks for characters other than space.
diff --git a/Lib/test/string_tests.py b/Lib/test/string_tests.py
index 8f16f20..ecc4159 100644
--- a/Lib/test/string_tests.py
+++ b/Lib/test/string_tests.py
@@ -252,6 +252,7 @@
self.checkequal(['a', 'b '], ' a b ', 'split', None, 1)
self.checkequal(['a', 'b c '], ' a b c ', 'split', None, 1)
self.checkequal(['a', 'b', 'c '], ' a b c ', 'split', None, 2)
+ self.checkequal(['a', 'b'], '\n\ta \t\r b \v ', 'split')
# by a char
self.checkequal(['a', 'b', 'c', 'd'], 'a|b|c|d', 'split', '|')