Re: [Numpy-discussion] Vector stacks

2017-07-02 Thread Stephan Hoyer
I would also prefer separate functions. These are much easier to understand that custom operator overloads. Side note: implementing this class with __array_ufunc__ for ndarray @ cvec actually isn't possible to do currently, until we fix this bug: https://github.com/numpy/numpy/issues/9028 On Sat,

Re: [Numpy-discussion] Scipy 2017 NumPy sprint

2017-07-02 Thread Charles R Harris
On Sun, Jul 2, 2017 at 9:33 AM, Sebastian Berg wrote: > On Sun, 2017-07-02 at 10:49 -0400, Allan Haldane wrote: > > On 07/02/2017 10:03 AM, Charles R Harris wrote: > > > Updated list below. > > > > > > On Sat, Jul 1, 2017 at 7:08 PM, Benjamin Root > > > > > > wrote:

Re: [Numpy-discussion] Scipy 2017 NumPy sprint

2017-07-02 Thread Sebastian Berg
On Sun, 2017-07-02 at 10:49 -0400, Allan Haldane wrote: > On 07/02/2017 10:03 AM, Charles R Harris wrote: > > Updated list below. > > > > On Sat, Jul 1, 2017 at 7:08 PM, Benjamin Root >   > > > wrote: > > > > Just a heads-up. There is now a sphinx-gallery plugin.

Re: [Numpy-discussion] Scipy 2017 NumPy sprint

2017-07-02 Thread Allan Haldane
On 07/02/2017 10:03 AM, Charles R Harris wrote: Updated list below. On Sat, Jul 1, 2017 at 7:08 PM, Benjamin Root > wrote: Just a heads-up. There is now a sphinx-gallery plugin. Matplotlib and a few other projects have migrated their docs over to use it.

Re: [Numpy-discussion] Scipy 2017 NumPy sprint

2017-07-02 Thread Charles R Harris
Updated list below. On Sat, Jul 1, 2017 at 7:08 PM, Benjamin Root wrote: > Just a heads-up. There is now a sphinx-gallery plugin. Matplotlib and a > few other projects have migrated their docs over to use it. > > https://sphinx-gallery.readthedocs.io/en/latest/ > > Cheers! > Ben Root > > > On Sa

Re: [Numpy-discussion] Vector stacks

2017-07-02 Thread Gael Varoquaux
My thoughts exactly. Gaël On Sun, Jul 02, 2017 at 10:31:33AM +1000, Juan Nunez-Iglesias wrote: > I’m with Nathaniel on this one. Subclasses make code harder to read and reason > about because you now have to be sure of the exact type of things that users > are passing you — which are array-like b