>> Use the "shlex" module in the std lib?
>
> Well color me ignorant.
>
> Works cleanly. I shouldn't have reinvented the wheel.
I've experienced this enough: the csv module, option parsing,
config-file parsing, logging, timeit, and pwd all come to mind as
code I've written before realizing the s
On Mon, 19 Nov 2012 16:05:30 -0800, josh wrote:
> I am working on a cmd.Cmd-based program, and normally could just split
> the string and get the right parts.
>
> Now I have a case where I could have two or three words in the string
> that need to be grouped into the same thing.
Try shlex.split.
On Monday, November 19, 2012, wrote:
> I am working on a cmd.Cmd-based program, and normally could just split the
> string and get the right parts.
>
> Now I have a case where I could have two or three words in the string that
> need to be grouped into the same thing.
>
> Then I realized that I'm