Mark Dickinson <[email protected]> added the comment: The issue applies to dict.update as well:
>>> d = {1:2}
>>> d.update({3:4}, **{5:6})
>>> d
{1: 2, 3: 4, 5: 6}
----------
_______________________________________
Python tracker <[email protected]>
<http://bugs.python.org/issue8419>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe:
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
