[issue6157] Tkinter.Text: changes for bbox, debug, and edit methods.

2014-01-11 Thread Roundup Robot
Roundup Robot added the comment: New changeset 7dab4feec126 by Serhiy Storchaka in branch '2.7': tkinter.Text.debug() now always returns 0/1. http://hg.python.org/cpython/rev/7dab4feec126 New changeset 05e84d3ecd1e by Serhiy Storchaka in branch '3.3': tkinter.Text.debug() now always returns 0/1.

[issue6157] Tkinter.Text: changes for bbox, debug, and edit methods.

2013-11-03 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- dependencies: -Add tkinter basic options tests resolution: -> fixed stage: commit review -> committed/rejected status: open -> closed ___ Python tracker ___

[issue6157] Tkinter.Text: changes for bbox, debug, and edit methods.

2013-11-03 Thread Roundup Robot
Roundup Robot added the comment: New changeset b3178d03871b by Serhiy Storchaka in branch '2.7': Issue #6157: Fixed Tkinter.Text.debug(). Original patch by Guilherme Polo. http://hg.python.org/cpython/rev/b3178d03871b New changeset 3f5e35b766ac by Serhiy Storchaka in branch '3.3': Issue #6157:

[issue6157] Tkinter.Text: changes for bbox, debug, and edit methods.

2013-11-02 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : Added file: http://bugs.python.org/file32462/tkinter_text_changes_2.patch ___ Python tracker ___ ___ Python-bugs-

[issue6157] Tkinter.Text: changes for bbox, debug, and edit methods.

2013-11-02 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Here is a patch with tests. Only fix for tkinter.Text.debug() (and perhaps test_bbox) should be backported to maintenance releases. -- versions: +Python 2.7, Python 3.3 ___ Python tracker

[issue6157] Tkinter.Text: changes for bbox, debug, and edit methods.

2013-10-31 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Issue19085 adds test file in which test for this issue should be placed. -- ___ Python tracker ___

[issue6157] Tkinter.Text: changes for bbox, debug, and edit methods.

2013-10-31 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- dependencies: +Add tkinter basic options tests versions: -Python 2.7, Python 3.3 ___ Python tracker ___ _

[issue6157] Tkinter.Text: changes for bbox, debug, and edit methods.

2013-10-31 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- assignee: -> serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue6157] Tkinter.Text: changes for bbox, debug, and edit methods.

2013-10-27 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Guilherme, do you want commit your patches or let me do this for your? -- versions: -Python 3.2 ___ Python tracker ___ ___

[issue6157] Tkinter.Text: changes for bbox, debug, and edit methods.

2013-01-04 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: LGTM. -- nosy: +serhiy.storchaka stage: patch review -> commit review versions: +Python 3.3, Python 3.4 -Python 3.1 ___ Python tracker ___

[issue6157] Tkinter.Text: changes for bbox, debug, and edit methods.

2010-08-01 Thread Mark Lawrence
Mark Lawrence added the comment: The suggested changes are mostly trivial, but there should be comments on the change to the bbox signature. -- nosy: +BreamoreBoy stage: -> patch review type: -> behavior versions: +Python 3.2 ___ Python tracker <

[issue6157] Tkinter.Text: changes for bbox, debug, and edit methods.

2009-05-31 Thread Guilherme Polo
New submission from Guilherme Polo : Hi, While testing Tkinter.Text I've found some problems and it would be good to fix them in trunk. The methods edit_redo, edit_reset, edit_separator and edit_undo doesn't return anything, so I would suggest to remove the return statements there. The debug me