Skip to content

LRC bug #52

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

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

Labels

No labels
No labels

Type

No type

Projects

No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions