> I don't completely understand how web.select works, and I realize that I am > doing more operations than necessary. I'll clean it up later, but at least > now I can get it to work!
web.select returns an iterator, which also allows you to jump to any random index forward. so you can do result[2] after result[0], but you can't do result[0] after result[1]. However, you can do result.list() or list(result) to get a list out of it, if you want to access it randomly. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "web.py" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/webpy?hl=en -~----------~----~----~----~------~----~------~--~---
