[issue9383] PIL Bug with split

2010-07-26 Thread Ezio Melotti
Ezio Melotti added the comment: You should report this on the PIL bug tracker. PIL is not part of the Python standard library. -- nosy: +ezio.melotti resolution: -> invalid stage: -> committed/rejected status: open -> closed type: crash -> behavior __

[issue9383] PIL Bug with split

2010-07-26 Thread Arrnaud Fabre
New submission from Arrnaud Fabre : >>> import Image >>> im = Image.open('whatever') >>> im.split() Traceback (most recent call last): File "", line 1, in File "/usr/lib/python2.6/dist-packages/PIL/Image.py", line 1497, in split if self.im.bands == 1: AttributeError: 'NoneType' object ha