On 12/17/2010 3:08 PM Emile van Sebille said... > Does anyone else consider this a bug? Hmmm... looks like it's split that I've got the issue with... >>> "this is a test".split() ['this', 'is', 'a', 'test'] >>> "this is a test".split(' ') ['this', 'is', 'a', 'test'] >>> "".split(' ') [''] >>> "".split() [] Emile