# HG changeset patch # User Paul Boddie # Date 1332883819 -7200 # Node ID e0758ff1d6954cab4fd1f44b95ffdd41d3346c51 # Parent e2ae3c09c2ff27a045f8aee22dbb313687d9f3af Reverted the object table index acquisition change for accessor strings. diff -r e2ae3c09c2ff -r e0758ff1d695 micropython/rsvp.py --- a/micropython/rsvp.py Mon Mar 26 23:24:38 2012 +0200 +++ b/micropython/rsvp.py Tue Mar 27 23:30:19 2012 +0200 @@ -197,7 +197,7 @@ if type_name in ("__builtins__.tuple", "__builtins__.list"): return [len(value)] + list(value) elif type_name == "__builtins__._accessor": - return [value, objtable.get_index("#" + value)] + return [value, objtable.get_index(value)] else: return [value]