[Python-Dev] Conditional For Statements

2008-05-18 Thread Ryan Hitchman
I'd like to propose an addition to the for statement's syntax: for {variable} in {iterable} if {condition}: {block} which is equivalent to for {variable} in {iterable}: if not {condition}: continue {block} and for {variable} in filter(lambda: {condition}, iterable):

[Python-Dev] Product function patch [issue 1093]

2007-09-02 Thread Ryan Freckleton
. If it is still wanted, could someone review it and give me feedback on it? Thanks, -- = --Ryan E. Freckleton ___ Python-Dev mailing list Python-Dev@python.org http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.python.org

[Python-Dev] Just saying hello

2007-04-11 Thread Ryan Kelley
Hi I just got accepted on the google summer of code to work on a project for python. I just wanted to say hello to everyone out there as i know i will end up asking a few questions before the summers over. -- Ryan Kelley NETS - University of Rhode Island Network Security http://www.uri.edu

[Python-Dev] Yet another type system -- request for comments on a SoC proposal

2006-05-06 Thread Ryan Forsythe
I'm currently revising a proposal for the Google Summer of Code, and it was suggested that I start a thread here to get input. Apologies for the length, but I wanted this to more than just a link to my proposal. The short version of my proposal is: The module would provide a system by which the

Re: [Python-Dev] Yet another type system -- request for comments on a SoC proposal

2006-05-06 Thread Ryan Forsythe
Apologies for the double post. Had my mail client misconfigured. ___ Python-Dev mailing list Python-Dev@python.org http://mail.python.org/mailman/listinfo/python-dev Unsubscribe:

<    1   2   3