Re: [Python-3000] Help on text editors

2006-10-04 Thread Martin v. Löwis
David Hopwood schrieb: >> However, there still are separate products for "English Windows XP", >> "German Windows XP", and so on. You can install a MUI pack only on >> the English version, and an English version + German MUI is different >> from the German version: the program files folder is calle

Re: [Python-3000] Nested Iteration?

2006-10-04 Thread Guido van Rossum
Let me nip this in the bud with a healthy -1000. It would forever destroy clarity. On 10/4/06, Calvin Spealman <[EMAIL PROTECTED]> wrote: > I'm sure this has been brought up before, either for Py3K or in > previous development, so just let me know if its already been > shotdown. Maybe even give it

Re: [Python-3000] Nested Iteration?

2006-10-04 Thread Nick Coghlan
Calvin Spealman wrote: > I'm sure this has been brought up before, either for Py3K or in > previous development, so just let me know if its already been > shotdown. Maybe even give it a second thought. > > for i in some_list in some_list_of_lists: > do_something_with(i) > > Currently, this is

[Python-3000] Nested Iteration?

2006-10-04 Thread Calvin Spealman
I'm sure this has been brought up before, either for Py3K or in previous development, so just let me know if its already been shotdown. Maybe even give it a second thought. for i in some_list in some_list_of_lists: do_something_with(i) Currently, this is passed iterating over the results of (