Matthew Barnett <pyt...@mrabarnett.plus.com> added the comment: Ah, I see what you mean. I still think you're wrong, though! :-)
The 'for' loop is doing is basically this: it = re.finditer(r'(\w+):(\w+)', text) try: while True: match_object = next(it) # body of loop except StopIteration: pass re.finditer() it returns a generator which yields match objects. What I think you're actually requesting (but not realising) is for the 'for' loop not just to iterate over the generator, but also over what the generator yields. If you want re.finditer() to yield the groups then it has to return a generator which yields those groups, not match objects. ---------- _______________________________________ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue9529> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com