CIA.vc
GhislainHivon
Real-time open source activity stats
Stats » Authors » GhislainHivon
informationsyndicateUTC clock
02:35 on May 28, 2012
event counters
The last message was received 2.19 years ago at 21:56 on Mar 21, 2010
0 messages so far today, 0 messages yesterday
0 messages so far this week, 0 messages last week
0 messages so far this month, 0 messages last month
2 messages since the first one, 2.19 years ago, for an average of 1.1 years between messages
recent messages
dateReversed sort columnprojectcontentlink
21:56 on Mar 21, 2010Python
Commit by GhislainHivon on roundup :: #8177/Incoherent error with keyword argument follow by unpacking argument lists: (link)
The reverse, f(*(1, 2, 3), foo=4), is consistent with
 f(1,2,3, foo=4)
 who also gave
 TypeError: f() got multiple values for keyword argument ' ...
#
15:51 on Mar 19, 2010Python
Commit by GhislainHivon on roundup :: #8177/Incoherent error with keyword argument follow by unpacking argument lists: (link)
[new] Take a fonction with a parameter and  *args
 def foo(bar, args*)
   pass

 then call it like this
 myargs = [1, 2, 3, 4, 5]
 foo(bar=1, *my ...
#