Re: [Python-Dev] LOAD_SELF and SELF_ATTR opcodes
Oct. 15, 2005
8:24 p.m.
Tim Delaney wrote:
that also binds all attribute accesses all the way down into a single constant call e.g.
LOAD_FAST 0 LOAD_ATTR 'a' LOAD_ATTR 'b' LOAD_ATTR 'c' LOAD_ATTR 'd'
is bound to a single constant:
LOAD_CONST 5
D'oh. I'm a moron - of course it can't do that. It'll do it for LOAD_GLOBAL followed by multiple LOAD_ATTR, and (I think) also for LOAD_NAME. Tim Delaney
7452
Age (days ago)
7452
Last active (days ago)
0 comments
1 participants
participants (1)
-
Tim Delaney