Re: [Numpy-discussion] patching docs

2009-04-24 Thread Joe Harrington
> 2009/4/24 william ratcliff : > > Actually, if I look here: > > http://docs.scipy.org/numpy/docs/numpy.core.fromnumeric.put/ > > > > The text that appears in by browser is: > > > > put(a, ind, v, mode='raise') > > > > Changes specific elements of one array by replacing from another array. > This

Re: [Numpy-discussion] patching docs

2009-04-24 Thread william ratcliff
Thanks! I was up pretty late last night and wanted to make sure I hadn't missed something while sleep deprived! Cheers, William 2009/4/24 Stéfan van der Walt > 2009/4/24 william ratcliff : > > Actually, if I look here: > > http://docs.scipy.org/numpy/docs/numpy.core.fromnumeric.put/ > > > > Th

Re: [Numpy-discussion] patching docs

2009-04-24 Thread Stéfan van der Walt
2009/4/24 william ratcliff : > Actually, if I look here: > http://docs.scipy.org/numpy/docs/numpy.core.fromnumeric.put/ > > The text that appears in by browser is: > > put(a, ind, v, mode='raise') > > Changes specific elements of one array by replacing from another array. This is pretty cryptic.

Re: [Numpy-discussion] patching docs

2009-04-24 Thread william ratcliff
Actually, if I look here: http://docs.scipy.org/numpy/docs/numpy.core.fromnumeric.put/ The text that appears in by browser is: *put(a, ind, v, mode='raise')* Changes specific elements of one array by replacing from another array. The indexing works on the flattened target array, put

Re: [Numpy-discussion] patching docs

2009-04-24 Thread Joe Harrington
william ratcliff writes: > Hi! I'd like to suggest a patch for: > numpy > .core > .fromnumeric .put > The docstring contains: > for i, val in zip(ind

Re: [Numpy-discussion] patching docs

2009-04-23 Thread Stéfan van der Walt
2009/4/24 william ratcliff : > I signed up for an account as williamratcliff > > May I have edit rights? Done! Cheers Stéfan ___ Numpy-discussion mailing list Numpy-discussion@scipy.org http://mail.scipy.org/mailman/listinfo/numpy-discussion

Re: [Numpy-discussion] patching docs

2009-04-23 Thread william ratcliff
I signed up for an account as williamratcliff May I have edit rights? Thanks, William 2009/4/24 Stéfan van der Walt > Hi William > > Please sign up for an account on the docs editor at > > http://docs.scipy.org > > Regards > Stéfan > > 2009/4/24 william ratcliff : > > Hi! I'd like to suggest

Re: [Numpy-discussion] patching docs

2009-04-23 Thread Stéfan van der Walt
Hi William Please sign up for an account on the docs editor at http://docs.scipy.org Regards Stéfan 2009/4/24 william ratcliff : > Hi!  I'd like to suggest a patch for: > > numpy.core.fromnumeric.put [...] > This would be more consistent with the rest of the docstring.  For the > future, is t

[Numpy-discussion] patching docs

2009-04-23 Thread william ratcliff
Hi! I'd like to suggest a patch for: numpy .core .fromnumeric .put The docstring contains: for i, val in zip(ind,v): x.flat[i]=val It should be: fo