The following code gets a crazy high LRC:
class Obj: pass
r = Region()
r # Region(lrc=1, osc=0, name=None, is_open=no) --- as expected
r.f = Obj()
r # Region(lrc=6, osc=0, name=None, is_open=yes)
I cannot fathom why lrc=6.
But things get weirder!
r.f = Obj()
r # Region(lrc=5, osc=0, name=None, is_open=yes) --- why LRC==5???
r.f = Obj()
r.f = Obj()
r.f = Obj()
r.f = Obj()
r.f = Obj()
r.f = Obj()
r # Region(lrc=-1, osc=0, name=None, is_open=yes) --- why LRF==-1???
(On phase3 branch.)
The following code gets a crazy high LRC:
I cannot fathom why
lrc=6.But things get weirder!
(On phase3 branch.)