On May 1, 11:06 am, 7stud <[EMAIL PROTECTED]> wrote: > > You might consider redefining func() so that you don't have to do the > unpack--repack...
When you define a function like this:
def func(**keywordargs):
print keywordargs
the function expects to receive arguments in the form:
func(a="hello", b="world")
not:
func(adict)
--
http://mail.python.org/mailman/listinfo/python-list
