http://lists.blender.org/pipermail/bf-blender-cvs/2009-August/021959.html
patch from Mitchell Stokes adding dictionary like access to a scene. (like KX_GameObjects have)
val = scene[“prop”]
scene[“prop”] = newval
if “prop” in scene: …
val = scene.get(“prop”, fallback_val)
This was commited to 2.5 today and I wonder what big useful things this will allow?
So what can you do with it?