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 Friedrich.Spee.von.Langenfeld
Recipients Friedrich.Spee.von.Langenfeld
Date 2013-06-17.20:04:58
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1371499498.11.0.831187493791.issue18246@psf.upfronthosting.co.za>
In-reply-to
Content
Python 3.3.2 (v3.3.2:d047928ae3f6, May 16 2013, 00:06:53) [MSC v.1600 64 bit (AMD64)] on win32
Type "copyright", "credits" or "license()" for more information.
>>> from tkinter import*
>>> root = Tk()
>>> text = Text()
>>> text.pack()
>>> text.insert(1.0, "Hello")
>>> text.get(1.0, END)
'Hello\n'

The tkinter.Text() widget add a newline (\n) to its content. Is this behavior a bug?
History
Date User Action Args
2013-06-17 20:04:58Friedrich.Spee.von.Langenfeldsetrecipients: + Friedrich.Spee.von.Langenfeld
2013-06-17 20:04:58Friedrich.Spee.von.Langenfeldsetmessageid: <1371499498.11.0.831187493791.issue18246@psf.upfronthosting.co.za>
2013-06-17 20:04:58Friedrich.Spee.von.Langenfeldlinkissue18246 messages
2013-06-17 20:04:58Friedrich.Spee.von.Langenfeldcreate