# HG changeset patch # User Paul Boddie # Date 1385684237 -3600 # Node ID a41b7f8b792b8ffa49c1294cc57882db49846013 # Parent 94cb3ad3225a79736b9b41a44d83187173cb1b58 Changed the argument ordering for "applystaticmethod". diff -r 94cb3ad3225a -r a41b7f8b792b micropython/syspython.py --- a/micropython/syspython.py Fri Nov 29 01:04:20 2013 +0100 +++ b/micropython/syspython.py Fri Nov 29 01:17:17 2013 +0100 @@ -807,8 +807,8 @@ elif isinstance(context, Class) and value: op = "applystaticmethod" - args.insert(0, quoted_ref(context)) - args[1] = quoted_ref(value) + args[0] = quoted_ref(value) + args.insert(1, quoted_ref(context)) # Plain method invocations.