The bug occurs when you pass a list of 2-tuples containing values which will not fit into a short int. The code emits a very vague error message proclaiming "sequence member not a 2-tuple" when in fact it is. The problem is that numbers outside the short int range also create an error condition. While checking all values going into the code would be expensive, a few lines to check for this condition and report the correct error after the fact would be a good thing. Andy _________________________________________________________________ Get your FREE download of MSN Explorer at http://explorer.msn.com _______________________________________________ pygtk mailing list [EMAIL PROTECTED] http://www.daa.com.au/mailman/listinfo/pygtk
