Right, heres the piece of code:

Code:
class Circuit:

    pass

class Workspace:

    Circuits = {}
    Components = {}


WORKSPACES = {}


WORKSPACES["a"] = Workspace()
WORKSPACES["b"] = Workspace()
WORKSPACES["c"] = Workspace()

#WORKSPACES["a"].Circuits["r"] = Circuit()
...