class My(object): info = 0 m1 = My() m2 = My() m1.info = 13 m2.info = 5 print m1.info
то есть info ведет себя как поле объекта. Если же info сделать словарем
class test(object): info = {} t1 = test() t2 = test() t1.info['a'] = 1 print t1.info print t2.info