Re: [Numpy-discussion] numpy distutils patch

2007-11-20 Thread Jarrod Millman
On Nov 19, 2007 6:09 PM, David M. Cooke <[EMAIL PROTECTED]> wrote: > My opinion is that it's not necessary, or correct. The fix leaves > quotes in if there is no whitespace, so '"Hi"' is converted to > ['"Hi"'], while '"Hi there"' becomes ['Hi there']. I can't see when > you'd want that behaviour.

Re: [Numpy-discussion] numpy distutils patch

2007-11-19 Thread David M. Cooke
On Nov 18, 2007, at 23:30 , Jarrod Millman wrote: > Hello, > > I never got any reply about the 'fix' for distutils.util.split_quoted > in numpy/distutils/ccompiler.py. Can anyone confirm whether this fix > is correct or necessary? If so, I would like to submit a patch > upstream for this. My op

Re: [Numpy-discussion] numpy distutils patch

2007-11-18 Thread Jarrod Millman
Hello, I never got any reply about the 'fix' for distutils.util.split_quoted in numpy/distutils/ccompiler.py. Can anyone confirm whether this fix is correct or necessary? If so, I would like to submit a patch upstream for this. Thanks, On Oct 29, 2007 2:17 AM, Jarrod Millman <[EMAIL PROTECTED]

[Numpy-discussion] numpy distutils patch

2007-10-29 Thread Jarrod Millman
Hey, I was looking at numpy/distutils/ccompiler.py and noticed that it has a fix for distutils.util.split_quoted. Here is the relevant code from split_quoted in numpy.distutils.ccompiler: --- def split_quoted(s): if _has_white_re.search(s[beg+1:end-1]