From: Florian Gross Date: 2004-01-23T12:05:38+09:00 Subject: Re: New to Python: my impression v. Perl/Ruby GGarramuno wrote: > Hmmm... I found the code for ranges in the ruby source and I sort of > understand why this would be so, but I cannot find the for or while > entry functions to trace why this could be. Remember that the for item in items construct really is only an alias for items.each { |item| } and that its behavior can be changed by overloading each. (!) Regards, Florian Gross