Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

python-iter

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 137
  • Category: Python
  • Founded: Feb 5, 2001
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Messages

Advanced
Messages Help
Messages 1 - 30 of 207   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
1 Greg Wilson
gvwilson@... Send Email
Feb 5, 2001
8:57 pm
I am teaching Python at the Space Telescope Science Institute on Thurs/Fri this week (Feb 8-9). There will be 20+ students in attendance, most of whom will...
2 Ka-Ping Yee
ping@... Send Email
Feb 18, 2001
9:40 am
... Date: Fri, 16 Feb 2001 13:30:10 -0500 (EST) From: neelk@... Reply-To: Neelakantan Krishnaswami <neelk@...> To: ping@... Subject: Fwd:...
3 Ka-Ping Yee
ping@... Send Email
Feb 18, 2001
9:40 am
... Date: Fri, 16 Feb 2001 17:10:26 -0500 From: Michael Chermside <mcherm@...> To: ping@... Subject: PEEP 0234: Iterators Hi: I'm fairly new to...
4 Ka-Ping Yee
ping@... Send Email
Feb 18, 2001
9:40 am
... Date: Sat, 17 Feb 2001 13:55:25 +0100 From: gzeljko <gzeljko@...> To: ping@... Subject: PEP 2xx """ for item in sequence: ...body... """ Why...
5 Ka-Ping Yee
ping@... Send Email
Feb 18, 2001
9:40 am
... Date: Fri, 16 Feb 2001 01:54:16 -0700 From: Andrew Dalke <dalke@...> To: ping@... Subject: Re: iterators (was: python-dev summary) Here's the...
6 Ka-Ping Yee
ping@... Send Email
Feb 18, 2001
9:41 am
... Date: Fri, 16 Feb 2001 09:41:37 -0800 From: Russell E Owen <owen@...> To: ping@... Subject: PEP 2xx I fear this is not the way to...
7 Ka-Ping Yee
ping@... Send Email
Feb 18, 2001
9:41 am
-- ?!ng ... Date: Fri, 16 Feb 2001 11:57:09 -0500 (EST) From: Jeremy Hylton <jeremy@...> To: neelk@... Cc: python-list@...,...
8 Ka-Ping Yee
ping@... Send Email
Feb 18, 2001
9:42 am
Hi, everyone. You're getting this message because you've sent me comments about PEP 234 at some point or other, and i'd like to get us all in the same forum...
9 Ka-Ping Yee
ping@... Send Email
Feb 18, 2001
10:24 am
Hi, Thomas. I'm sending my reply to python-iter@yahoogroups.com instead of python-dev, and trying to move the discussion over there, so i hope you join. For...
10 Ka-Ping Yee
ping@... Send Email
Feb 18, 2001
10:37 am
Hi, Marc. I'm trying to move the iterator discussion over to python-iter@yahoogroups.com, so i hope you join. For others on python-iter -- this message is a...
11 Ka-Ping Yee
ping@... Send Email
Feb 18, 2001
10:37 am
Hi again. I've seen a few responses with the sentiment that there is a lot of stuff going on in this proposal, so i just wanted to take a moment to explain why...
12 Ka-Ping Yee
ping@... Send Email
Feb 18, 2001
10:43 am
This message is a reply to: http://mail.python.org/pipermail/python-dev/2001-February/012687.html ... It does get us fast iteration for free on lists, tuples,...
13 python-iter-moshez-ya... Send Email Feb 18, 2001
4:26 pm
Hi! I want to express my opinion about iterators. The secret agenda of this message (teehee) is to test that I can post to the list, and that I'm getting...
14 Greg Wilson
gvwilson@... Send Email
Feb 18, 2001
5:30 pm
15 gzeljko
gzeljko@... Send Email
Feb 18, 2001
6:48 pm
Just email to python-iter-subscribe@yahoogroups.com ly-y'rs-gzeljko...
16 gzeljko
gzeljko@... Send Email
Feb 18, 2001
8:49 pm
End wath this code will do ? def f(): pass for item iterating f: pass ly-y'rs-gzeljko...
17 gzeljko
gzeljko@... Send Email
Feb 18, 2001
11:24 pm
Just one example: classic python construct (IMHO) instance = some_class(x,y) while 1: item = instance.f() if not item: break do_something_with_item ... compare...
18 gzeljko
gzeljko@... Send Email
Feb 19, 2001
5:07 pm
Just email to python-iter-subscribe@yahoogroups.com ly-y'rs-gzeljko...
19 Greg Wilson
gvwilson@... Send Email
Feb 19, 2001
11:27 pm
Hi, folks. Now that Marc-Andre has arranged a mailing list for technical discussion of Python iterators at SourceForge (see his earlier mail to this list),...
20 Raymond Hettinger
othello@... Send Email
Feb 20, 2001
6:37 pm
When thinking about dictionaries and iterators, several issues gave me heartburn. Working through each of them pointed to revised proposal for iterator syntax....
21 qrczak@... Send Email Feb 20, 2001
10:58 pm
... It's not possible to have perfect analogies when enough parallels between containers are established. A set corresponds to a dictionary with elements as...
22 Magnus Lie Hetland
mlh@... Send Email
Feb 21, 2001
11:33 am
First of all: I'm a fan of consistency. I think having "in"-tests checking the keys of a dictionary is arbitrary and ugly. (And I also think we should have a...
23 Guido van Rossum
guido@... Send Email
Feb 21, 2001
2:28 pm
... Sorry, practicality beats purity. --Guido van Rossum (home page: http://www.python.org/~guido/)...
24 Magnus Lie Hetland
mlh@... Send Email
Feb 21, 2001
4:21 pm
... Sure. I exaggerated -- I don't really find it *that* ugly :) And the last part was meant as support for PEP 218. ... -- Magnus Lie Hetland...
25 Raymond Hettinger
othello@... Send Email
Feb 21, 2001
10:00 pm
... Suprisingly, it is possible: The rule is that the 'in' operator loops over or checks for membership in a list (strings give a list of characters, ...
26 qrczak@... Send Email Feb 22, 2001
8:41 am
... Elements in a set represented as a dictionary are not ordered by their nature, so it would be silly to introduce a shortcut which creates an ad-hoc...
27 othello@... Send Email Feb 22, 2001
5:43 pm
... I think everyone agrees on the non-colon syntax: for key in dict for item in seqn PEP 234 also proposes: for key:value in dict for index:item in seqn My...
28 Guido van Rossum
guido@... Send Email
Feb 22, 2001
6:51 pm
... I do! ... I think I agree, even though I originally proposed the colon syntax. It seems to confusing. ... No. ... No. I propose to introduce an interator...
29 othello@... Send Email Feb 22, 2001
7:53 pm
1) I think that "for :val in dict" is sematically ambiguous and error prone. Given {1:'x', 2:'y', 3:'x'}, would you get three loops or two? 2) The half colon...
30 Guido van Rossum
guido@... Send Email
Feb 22, 2001
8:31 pm
... Hm, that's a silly argument. How many "loops" (I guess you mean iterations) do you expect in "for val in ['x', 'y', 'x']"? Three of course! ... Not any...
Messages 1 - 30 of 207   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help