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, ringhome
Date 2009-02-20.19:36:33
SpamBayes Score 6.607701e-08
Marked as misclassified No
Message-id <1235158595.14.0.264813276175.issue5163@psf.upfronthosting.co.za>
In-reply-to
Content
Do you mean something like this:

import Tkinter

def insert():
    text.insert('end', 'buh\n')
    text.see('end')
    text.after(100, insert)

text = Tkinter.Text()
text.pack(expand=True, fill='both', side='left')
vbar = Tkinter.Scrollbar(orient='vertical', command=text.yview)
vbar.pack(side='right', fill='y')
text.configure(yscrollcommand=vbar.set)
text.after(100, insert)

text.mainloop()

(or change Tkinter by tkinter to work on python 3.x)
Text.see already does what you want, can you argue why adding an option
for that would be good ?
History
Date User Action Args
2009-02-20 19:36:35gpolosetrecipients: + gpolo, ringhome
2009-02-20 19:36:35gpolosetmessageid: <1235158595.14.0.264813276175.issue5163@psf.upfronthosting.co.za>
2009-02-20 19:36:33gpololinkissue5163 messages
2009-02-20 19:36:33gpolocreate