Simon Forman wrote: [snip]
I'll often do that this way: args = re.split('\s', line)
This has the same result, but is shorter and quicker: args = line.split() -- http://mail.python.org/mailman/listinfo/python-list
Simon Forman wrote: [snip]
I'll often do that this way: args = re.split('\s', line)
This has the same result, but is shorter and quicker: args = line.split() -- http://mail.python.org/mailman/listinfo/python-list