forked from python/cpython
-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Milestone
Description
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