[issue21522] Add more tkinter tests

2014-05-23 Thread Roundup Robot
Roundup Robot added the comment: New changeset a7082e2898aa by Serhiy Storchaka in branch '2.7': Issue #21522: Added Tkinter tests for Listbox.itemconfigure(), http://hg.python.org/cpython/rev/a7082e2898aa New changeset f7c012ff33cb by Serhiy Storchaka in branch '3.4': Issue #21522: Added

[issue21522] Add more tkinter tests

2014-05-23 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- resolution: - fixed stage: patch review - resolved status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21522 ___

[issue21522] Add more tkinter tests

2014-05-23 Thread Ned Deily
Ned Deily added the comment: Failing tests with Tk 8.4 (Carbon Tk 8.4.20 on OS X): == ERROR: test_paneconfigure_hide (tkinter.test.test_tkinter.test_widgets.PanedWindowTest)

[issue21522] Add more tkinter tests

2014-05-23 Thread Roundup Robot
Roundup Robot added the comment: New changeset c7ee46ed2d70 by Serhiy Storchaka in branch '2.7': Fixed new Tkinter tests added in issue #21522 with Tk 8.4. http://hg.python.org/cpython/rev/c7ee46ed2d70 New changeset 854404294f34 by Serhiy Storchaka in branch '3.4': Fixed new Tkinter tests added

[issue21522] Add more tkinter tests

2014-05-23 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thank you Ned. My fault. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21522 ___ ___ Python-bugs-list

[issue21522] Add more tkinter tests

2014-05-23 Thread Ned Deily
Ned Deily added the comment: Yes, that fixes 8.4, thanks! -- resolution: - fixed status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21522 ___

[issue21522] Add more tkinter tests

2014-05-18 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Here is a patch which adds tests for Listbox.itemconfigure(), PanedWindow.paneconfigure() and several tests for Menu.entryconfigure(). -- assignee: serhiy.storchaka components: Tests, Tkinter files: test_tkinter_configure.patch keywords: patch