Ian Bicking wrote:

> ** can't be changed 
> in this way, either -- it really has to enumerate all the keys in the 
> thing passed to it,

In Py3k this could perhaps be different in the case where
you're calling a function defined like

   def f(*args, **kwds):
     ...

In that case there are no named arguments to look up
in the dict, so when it's called using

   f(**obj)

the obj could be passed straight through to the kwds
argument.

--
Greg
_______________________________________________
Python-3000 mailing list
Python-3000@python.org
http://mail.python.org/mailman/listinfo/python-3000
Unsubscribe: 
http://mail.python.org/mailman/options/python-3000/archive%40mail-archive.com

Reply via email to