Issues - shmolyneaux/SquareJam GitHub Wiki

  • Only basic python types can be initialized with a Dicts and Lists. Example:
self.__container__.d = {'a':1, 'b':{'x':[0,1]} 'c':[0,1]}

This creates a Dict containing a pstorage integer, a non-pstorage list, and a non-pstorage dict.

  • __root__ in PStorBaseObject is not set to anything, seemingly should be set to the Storage object.

  • keys() is a method in Objects but is not implemented

  • getcontents returns a list of attributes, though comments in pstorage indicate it should be tuples. Which is expected behavior?