[issue5382] Allow Python keywords as keyword arguments for functions.

2009-02-27 Thread David Kerkeslager
David Kerkeslager added the comment: Thank you all for reading and responding to my submission. I post the following without expectation of results, only to expand my reasoning: The following aren't applicable to the situation I described: def f(): class return def f(

[issue5383] Allow intermixing of keyword arguments and vargarg arguments

2009-02-27 Thread David Kerkeslager
Changes by David Kerkeslager : -- components: +Interpreter Core ___ Python tracker <http://bugs.python.org/issue5383> ___ ___ Python-bugs-list mailing list Unsub

[issue5383] Allow intermixing of keyword arguments and vargarg arguments

2009-02-27 Thread David Kerkeslager
Changes by David Kerkeslager : -- type: -> feature request versions: +Python 3.0, Python 3.1 ___ Python tracker <http://bugs.python.org/issue5383> ___ ___ Py

[issue5383] Allow intermixing of keyword arguments and vargarg arguments

2009-02-27 Thread David Kerkeslager
New submission from David Kerkeslager : This problem arose in this thread: http://www.python-forum.org/pythonforum/viewtopic.php?f=2&t=11606 Basically, we have the following function which will generate an XHTML node: def xhtmlNode(tag, *content, **attr):... If we call: xhtmlNode(

[issue5382] Allow Python keywords as keyword arguments for functions.

2009-02-27 Thread David Kerkeslager
New submission from David Kerkeslager : This problem arose in this thread: http://www.python-forum.org/pythonforum/viewtopic.php?f=2&t=11606 Basically, we have the following function which will generate an XHTML node: def xhtmlNode(tag, **attr):... If we call: xhtmlNode('div',