This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author gpolo
Recipients gpolo, kbk, rhettinger, sy12
Date 2009-03-24.02:58:02
SpamBayes Score 2.2740218e-05
Marked as misclassified No
Message-id <1237863484.33.0.43826592678.issue5129@psf.upfronthosting.co.za>
In-reply-to
Content
You do not need IDLE to reproduce the problem:

import Tkinter

text = Tkinter.Text()
text.pack()
text.insert('1.0',
        'class C:\n\tdef m(self, c):\n                '
        'if c:\n                        c = False\n'
        '\t\t\tc = False\n                else:\n        '
        '\t\tc = True\n\t\tc = True\n')
text.mainloop()

Then run it with tk 8.4 and tk 8.5.
History
Date User Action Args
2009-03-24 02:58:04gpolosetrecipients: + gpolo, rhettinger, kbk, sy12
2009-03-24 02:58:04gpolosetmessageid: <1237863484.33.0.43826592678.issue5129@psf.upfronthosting.co.za>
2009-03-24 02:58:03gpololinkissue5129 messages
2009-03-24 02:58:02gpolocreate