[issue1602742] itemconfigure returns incorrect text property of text items

2014-07-06 Thread Francisco Martín Brugué
Francisco Martín Brugué added the comment: Hi, just a question: the status of this issue is pending but it seems to be already resolved/duplicated. Means that this issue can be closed? Thansk in advance! -- nosy: +francismb status: pending - open

[issue1602742] itemconfigure returns incorrect text property of text items

2014-07-06 Thread Berker Peksag
Changes by Berker Peksag berker.pek...@gmail.com: -- status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1602742 ___ ___

[issue1602742] itemconfigure returns incorrect text property of text items

2014-02-09 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- resolution: - duplicate stage: needs patch - committed/rejected status: open - pending superseder: - Regression: Windows-tkinter-idle, unicode, and 0xxx filename ___ Python tracker

[issue1602742] itemconfigure returns incorrect text property of text items

2013-09-15 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: The patch for issue19020 fixes this issue. -- nosy: +serhiy.storchaka versions: +Python 3.3, Python 3.4 -Python 3.1, Python 3.2 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1602742

[issue1602742] itemconfigure returns incorrect text property of text items

2010-08-25 Thread Mark Lawrence
Changes by Mark Lawrence breamore...@yahoo.co.uk: -- stage: - needs patch type: - behavior versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.4, Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1602742

[issue1602742] itemconfigure returns incorrect text property of text items

2008-09-15 Thread Guilherme Polo
Guilherme Polo [EMAIL PROTECTED] added the comment: The problem is actually on Tkinter side, not really tcl/tk fault here. Tkinter should be formatting that text option as {text here} when the value contains one or more spaces (it is actually fine to use this tcl formatting when there are no

[issue1602742] itemconfigure returns incorrect text property of text items

2008-09-15 Thread Guilherme Polo
Guilherme Polo [EMAIL PROTECTED] added the comment: Uhm, now I see.. Tkinter already formats it correctly, and you shouldn't be using itemconfigure for this task. If you try it directly in tk, like this: canvas .c .c create text 0 0 -text {a b} .c itemconfigure 1 -text You would get something