Skip Montanaro wrote: > Make the module dict read-only and some as-yet-to-be-determined time during > import? I don't think read-only will fly. Perhaps we could use a subclass of dict for the module dict. It could have an optimized interface for use by the runtime internals. The standard dict interface would be slower and could check for monkey business. Neil