Re: [Image-SIG] going between numpy array and PIL.Image not behaving as expected -- how to report a bug ?

2008-11-21 Thread Jim Vickroy
Christopher Barker wrote: Jim Vickroy wrote: Ned Batchelder wrote: Yes, it definitely looks like a bug in fromarray. typestr is 'in my environment, and the check against typestr[1:] seems to recognize this. The line typestr = typestr[:2] should change, perhaps to: typestr = typest

Re: [Image-SIG] going between numpy array and PIL.Image not behaving as expected -- how to report a bug ?

2008-11-21 Thread Christopher Barker
Jim Vickroy wrote: Ned Batchelder wrote: Yes, it definitely looks like a bug in fromarray. typestr is 'my environment, and the check against typestr[1:] seems to recognize this. The line typestr = typestr[:2] should change, perhaps to: typestr = typestr[-2:] --Ned. http://nedbatch

Re: [Image-SIG] going between numpy array and PIL.Image not behaving as expected -- how to report a bug ?

2008-11-21 Thread Jim Vickroy
Ned Batchelder wrote: Yes, it definitely looks like a bug in fromarray. typestr is 'my environment, and the check against typestr[1:] seems to recognize this. The line typestr = typestr[:2] should change, perhaps to: typestr = typestr[-2:] --Ned. http://nedbatchelder.com OK, I have