[issue22085] Drop support of Tk 8.3

2014-08-05 Thread Roundup Robot
Roundup Robot added the comment: New changeset 7ed237478fcc by Zachary Ware in branch 'default': Closes #22136: Fix MSVC compiler warnings introduced by #22085 http://hg.python.org/cpython/rev/7ed237478fcc -- ___ Python tracker

[issue22085] Drop support of Tk 8.3

2014-07-31 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: I close this issue because don't want to change topic yet once (and one feature per issue). Separate issue22115 was opened for adding new trace methods. -- resolution: -> fixed stage: needs patch -> resolved status: open -> closed __

[issue22085] Drop support of Tk 8.3

2014-07-31 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Yet one incompatibility is that callbacks set but old command are called with last argument one of 'r', 'w' or 'u', but callbacks set but old command are called with last argument one of 'read', 'write' or 'unset' (or 'array'). -- __

[issue22085] Drop support of Tk 8.3

2014-07-30 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Oh, I forgot about this difference. Of course we can convert input arguments to match new syntax, but "trace vinfo" and "trace info variable" return different results: % trace add variable foo {read write} {tracer foo} % trace info variable foo {{read write}

[issue22085] Drop support of Tk 8.3

2014-07-30 Thread Roundup Robot
Roundup Robot added the comment: New changeset 9f333c06915f by Serhiy Storchaka in branch 'default': Back out of changes to Tkinter variables trace commands (issue #22085). http://hg.python.org/cpython/rev/9f333c06915f -- ___ Python tracker

[issue22085] Drop support of Tk 8.3

2014-07-30 Thread Ned Deily
Ned Deily added the comment: The checkin seems to have broken test_idle and test_ttk_guionly. Typical failure: == ERROR: test_horizontal_range (tkinter.test.test_ttk.test_extensions.LabeledScaleTest) -

[issue22085] Drop support of Tk 8.3

2014-07-30 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- assignee: -> serhiy.storchaka resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ __

[issue22085] Drop support of Tk 8.3

2014-07-30 Thread Roundup Robot
Roundup Robot added the comment: New changeset 1aa6ac23340d by Serhiy Storchaka in branch 'default': Issue #22085: Dropped support of Tk 8.3 in Tkinter. http://hg.python.org/cpython/rev/1aa6ac23340d -- nosy: +python-dev ___ Python tracker

[issue22085] Drop support of Tk 8.3

2014-07-30 Thread Martin v . Löwis
Martin v. Löwis added the comment: The patch looks fine, please apply. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Uns

[issue22085] Drop support of Tk 8.3

2014-07-30 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: I'm even not sure that current code works with Tk 8.3. We have no buildbots with Tk 8.3 and compatibility with it was not tested for years. Here is a patch which drops support of Tk 8.3. -- stage: -> patch review title: Update deprecated Tcl command