[issue6779] NotImplementedError on for statement
R. David Murray added the comment: The bug tracker is not a place to get help debugging your code. Your code is not a complete example, and is doing odd things with try/except and the printing of errors which may well be masking what is really going on, so I can't begin to evaluate whether or n
[issue6779] NotImplementedError on for statement
New submission from Samuel Quiring : I have the following for statement: lenc = len(children) for ic in range(lenc): print "ic: ", ic child = children[ic] print " -", ic, child.__class__.__name__