Maciej Fijalkowski wrote: > What do you think about this code: > > class A: > locals()[42] = 98 > > Seems people rely on it working. Do we consider it part of python > language? Modifying the dict returned by locals() is documented as NOT being guaranteed to work, isn't it? -- Greg