[issue7075] Bug while put a set on a dict

2009-10-07 Thread Benjamin Peterson
Changes by Benjamin Peterson : -- resolution: -> invalid ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http:/

[issue7075] Bug while put a set on a dict

2009-10-06 Thread Chu-Cheng
Chu-Cheng added the comment: my fault, I know what is the difference now :) sorry for bugging -- status: open -> closed ___ Python tracker ___ ___

[issue7075] Bug while put a set on a dict

2009-10-06 Thread Chu-Cheng
New submission from Chu-Cheng : >>> x={1:{1}} >>> x[1] = (x.get(1).add(2)) >>> x {1: None} But... >>> x={1:{1}} >>> o = x.get(1) >>> o.add(2) >>> o {1, 2} >>> x[1] = o >>> x {1: {1, 2}} -- components: None messages: 93674 nosy: chucheng severity: normal status: open title: Bug while put