Message1107

Author kzuberi
Recipients
Date 2006-03-03.05:03:21
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
In Jython 2.2a1:

 >>> x = dict(hi=1, there=2)
 >>> x
 {}

but 

 >>> x = dict({1:1}, hi=2, there=3)
 >>> x
 {'hi': 2, 'there': 3, 1: 1}

seems the code to handle keyword args is in there but
buggy. Tiny fix attached.

- kz



History
Date User Action Args
2008-02-20 17:17:28adminlinkissue1442254 messages
2008-02-20 17:17:28admincreate