On Feb 12, 2015 5:26 PM, "Eric Snow" <ericsnowcurrently@gmail.com> wrote:
>
> On Thu, Feb 12, 2015 at 11:21 AM, Thomas Kluyver <thomas@kluyver.me.uk> wrote:
> > Or perhaps even a classmethod:
> >
> > dict.merged(a, b, c)
>
> A dict factory classmethod like this is the best proposal I've seen
> thus far. *  It would be nice if the spelling were more succinct
> (that's where syntax is helpful).  Imagine:
>
>   some_func(**dict.merged(a, b, c))

Or just make "dict(a, b, c)" work.

-eric