[issue6469] Function definition expressions feature

2009-07-13 Thread Chris Perkins
Chris Perkins chrisperkin...@gmail.com added the comment: Details and discussion: http://groups.google.com/group/python-ideas/browse_frm/thread/a2bb1ff3992d9c01 -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6469

[issue6469] Function definition expressions feature

2009-07-13 Thread R. David Murray
R. David Murray rdmur...@bitdance.com added the comment: Even assuming you'd gotten a rough consensus on python-ideas (which it does not appear that you have), a change of this nature would require a PEP, and is thus not suitable for the tracker. -- nosy: +r.david.murray priority: -

[issue6469] Function definition expressions feature

2009-07-12 Thread Chris Perkins
New submission from Chris Perkins chrisperkin...@gmail.com: Proposed feature - function definition expressions, superficially similar to Ruby blocks. To be proposed on Python-ideas list. -- files: blocks.patch keywords: patch messages: 90455 nosy: grammati severity: normal status: open

[issue6469] Function definition expressions feature

2009-07-12 Thread Chris Perkins
Chris Perkins chrisperkin...@gmail.com added the comment: Forgot to mention - the patch is very much incomplete. It breaks tests, contains none of the work that would need to be done in the ast package, etc. This is just a proof-of-concept. -- ___