[issue16967] Keyword only argument default values are evaluated before other defaults

2014-06-20 Thread Kay Hayen
Kay Hayen added the comment: I can confirm that Python3.4 is not affected. Python 3.3 and 3.2 still are. -- ___ Python tracker ___ ___

[issue16967] Keyword only argument default values are evaluated before other defaults

2013-02-10 Thread Roundup Robot
Roundup Robot added the comment: New changeset 6917402c6191 by Benjamin Peterson in branch 'default': evaluate lambda keyword-only defaults after positional defaults (#16967 again) http://hg.python.org/cpython/rev/6917402c6191 -- ___ Python tracker <

[issue16967] Keyword only argument default values are evaluated before other defaults

2013-02-10 Thread Roundup Robot
Roundup Robot added the comment: New changeset d296cf1600a8 by Benjamin Peterson in branch 'default': evaluate positional defaults before keyword-only defaults (closes #16967) http://hg.python.org/cpython/rev/d296cf1600a8 -- nosy: +python-dev resolution: -> fixed stage: -> committed/re

[issue16967] Keyword only argument default values are evaluated before other defaults

2013-02-10 Thread Benjamin Peterson
Changes by Benjamin Peterson : -- assignee: -> benjamin.peterson nosy: +benjamin.peterson ___ Python tracker ___ ___ Python-bugs-list

[issue16967] Keyword only argument default values are evaluated before other defaults

2013-02-10 Thread Nick Coghlan
Nick Coghlan added the comment: Agreed on it being a bug that we do it the wrong way around, but "Yikes!" at the idea of code where it makes a significant difference. -- nosy: +ncoghlan ___ Python tracker

[issue16967] Keyword only argument default values are evaluated before other defaults

2013-01-14 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue16967] Keyword only argument default values are evaluated before other defaults

2013-01-14 Thread Georg Brandl
Georg Brandl added the comment: Looks like a bug to me, although it isn't likely to cause great harm. -- nosy: +georg.brandl title: Keyword keyword only default parameters are evaluated before po -> Keyword only argument default values are evaluated before other defaults __