[issue1409] new keyword-only function parameters interact badly with nested functions

2007-11-23 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: Corrected as r59155. Thanks for the report! -- nosy: +amaury.forgeotdarc resolution: -> fixed status: open -> closed __ Tracker <[EMAIL PROTECTED]> ___

[issue1409] new keyword-only function parameters interact badly with nested functions

2007-11-09 Thread Christian Heimes
Christian Heimes added the comment: > Please discuss that in the meta tracker (see the "report tracker > problem" link in the sidebar). Done http://psf.upfronthosting.co.za/roundup/meta/issue167 __ Tracker <[EMAIL PROTECTED]> __

[issue1409] new keyword-only function parameters interact badly with nested functions

2007-11-09 Thread Georg Brandl
Georg Brandl added the comment: Please discuss that in the meta tracker (see the "report tracker problem" link in the sidebar). __ Tracker <[EMAIL PROTECTED]> __ ___

[issue1409] new keyword-only function parameters interact badly with nested functions

2007-11-09 Thread Christian Heimes
Christian Heimes added the comment: Oh, I misinterpreted the meaning of accepted. Can somebody please add a "confirmed" resolution? __ Tracker <[EMAIL PROTECTED]> __ ___

[issue1409] new keyword-only function parameters interact badly with nested functions

2007-11-09 Thread Georg Brandl
Georg Brandl added the comment: I think you misunderstood the meaning of "accepted" in our tracker - it may mean "I confirm that this is a bug" somewhere else, here it means "patch accepted". -- nosy: +georg.brandl __ Tracker <[EMAIL PROTECTED]>

[issue1409] new keyword-only function parameters interact badly with nested functions

2007-11-09 Thread Christian Heimes
Christian Heimes added the comment: I set this bug to accepted because I was able to reproduce it yesterday. It's all in the history. Scroll down, pal! :) -- nosy: +tiran __ Tracker <[EMAIL PROTECTED]> __

[issue1409] new keyword-only function parameters interact badly with nested functions

2007-11-08 Thread Guido van Rossum
Guido van Rossum added the comment: I think I agree this is a bug. Who is setting all bugs to 'accepted'? -- nosy: +gvanrossum resolution: accepted -> __ Tracker <[EMAIL PROTECTED]> __ __

[issue1409] new keyword-only function parameters interact badly with nested functions

2007-11-08 Thread Christian Heimes
Changes by Christian Heimes: -- keywords: +py3k priority: -> normal resolution: -> accepted __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-

[issue1409] new keyword-only function parameters interact badly with nested functions

2007-11-08 Thread Paul Pogonyshev
New submission from Paul Pogonyshev: Attached scripts fails with 'NameError: free variable 'a' referenced before assignment in enclosing scope'. If you remove '*' in function parameter list, it works. I think it is a bug. -- components: Interpreter Core files: test.py messages: 57277 n