the following code works on python 2.5:<br><br>>>> def f(**kwargs):<br>... print kwargs<br>...<br>>>> f(a=5,b=7,a=8)<br>{'a': 8, 'b': 7}<br>>>><br><br>but fails on python2.4, saying that "a" is given twice. <br>
is this a bug or a feature?<br clear="all"><br><br>-tomer<br>