[issue16023] IDLE froze when typing ctrl-shift-5

2012-09-24 Thread Zellmeyer
New submission from Zellmeyer: IDLE do not response and you have to force to quit when you type the bad combination ctrl-shift-5. I find it on my macbook when i try do type a [ character and type the bad combination by mistake because the keyboard are not exactly the same as the iMac

[issue16023] IDLE froze when typing ctrl-shift-5

2012-09-25 Thread Zellmeyer
Zellmeyer added the comment: I used OSX 10.8.2 build 12C54 on both Macbookair and iMac I have ActiveState TCL installed 8.5 Ctrl-shift-5 does not correspond to a special character on my keyboard layout. But i discovered that this combination open a window called tab width in the IDLE shell

[issue27668] list illogical affectation

2016-08-02 Thread antoine Zellmeyer
New submission from antoine Zellmeyer: >>> tab = [['x']*3]*3 >>> tab [['x', 'x', 'x'], ['x', 'x', 'x'], ['x', 'x', 'x']] >>> tab[1][0] = 5 >>> tab [[5, 'x', 'x'], [5, 'x', 'x'], [5, 'x', 'x']] >>> why not only the element tab[1][0] is changed ?