Skip to content

LRC bug #52

@TobiasWrigstad

Description

@TobiasWrigstad

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.)

Metadata

Metadata

Assignees

Labels

No labels
No labels

Projects

No projects

Relationships

None yet

Development

No branches or pull requests

Issue actions