The documentation I am referencing states...
The sep argument may consist of multiple characters (for example, "'1,
2, 3'.split(', ')" returns "['1', '2', '3']").So why doesn't the latter two split on *any* whitespace character, and is instead looking for the sep string as a whole? -- http://mail.python.org/mailman/listinfo/python-list
