Guido> I was thinking of adding appropriate new opcodes for a few
Guido> builtins that are called a lot, like len. This would be
Guido> implemented using something like this:
Guido> case BUILTIN_LEN:
...
Would you special case those calls so that, in effect, __builtin__.len
couldn't be overridden by a "len" object in the globals or locals?
Skip