Hello, I am a newbie. I am having a lot of fun with pyjamas -- thanks for the awesome project :)
I have a couple of questions: I am trying to send an object from the server to the client using JSON. Server: json.dumps(tree, default=convert_to_builtin_type) Client: json.loads(response, object_hook=dict_to_object) But it looks like 'jsObjectToPyObject' in pyjs/json does not actually take in an object_hook argument? Is that right? JSONService uses object_hook in '_decode_response' though. So that probably means I am doing something wrong. I am using Python 2.7 and Safari. I would really appreciate any help. Thanks! Rahul

