On Tue, Jul 22, 2008 at 10:52 AM, Pierre GM <[EMAIL PROTECTED]> wrote:

> On Tuesday 22 July 2008 12:48:20 Charles R Harris wrote:
> > I fixed it, Pierre. You can't do
> >
> > (_[1] for _ in ddtype.descr)
>
> > to get a tuple.
>
> OK, thx for that. AAMOF, lines 243-245 should be:
> self._fill_value = np.array(tuple(fillval),
>                                        dtype=[(_[0], _[1])
>                                               for _ in ddtype.descr])
>
> I guess 2.3 choked on the generator instead of the list.
>

I just replaced () by []. The 1.1.x version is now

dt = zip(ddtype.names, [s[1] for s in ddtype.descr])

Which should have the same effect, although not done as slickly.

Chuck
_______________________________________________
Numpy-discussion mailing list
Numpy-discussion@scipy.org
http://projects.scipy.org/mailman/listinfo/numpy-discussion

Reply via email to