[issue24951] Idle test_configdialog fails on Fedora 23, 3.6

2019-03-23 Thread Terry J. Reedy
Change by Terry J. Reedy : -- assignee: -> terry.reedy components: +IDLE ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue24951] Idle test_configdialog fails on Fedora 23, 3.6

2016-04-11 Thread Terry J. Reedy
Terry J. Reedy added the comment: This and #26673 are duplicates. The latter also reports failure on Arch Linux and other Python versions. While our default policy is to keep the earliest report open, I am closing this as #26673 has more information, including from Petr. --

[issue24951] Idle test_configdialog fails on Fedora 23, 3.6

2015-09-07 Thread Petr Viktorin
Petr Viktorin added the comment: Sorry for the delay; I lost the mail notification. I don't have a config-main.cfg file. The last output from the test, with the print added: test_dialog (idlelib.idle_test.test_configdialog.ConfigDialogTest) ... ('.139655680391704', 'configure',

[issue24951] Idle test_configdialog fails on Fedora 23, 3.6

2015-08-28 Thread Terry J. Reedy
New submission from Terry J. Reedy: In response to my python-list request for testing tkinter/idle on linux, Petr wrote On Fedora 21, the tests pass (Python 3.4.1 and latest dev version). On Fedora 23, I see: $ python3 -V Python 3.4.3 tests pass $ ./python -V Python 3.6.0a0 $ ./python -m

[issue24951] Idle test_configdialog fails on Fedora 23, 3.6

2015-08-28 Thread Petr Viktorin
Petr Viktorin added the comment: I'd be happy to do any further testing (modulo a vacation until this Tuesday), but unfortunately I don't have time to dive into tkinter myself and look for the cause. IDLE starts normally on this box. Also note: Fedora 23 is currently in alpha (though Python

[issue24951] Idle test_configdialog fails on Fedora 23, 3.6

2015-08-28 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Could you please add print(_flatten((self._w, cmd)) + self._options(cnf)) just before the call in line 858 in Lib/tkinter/__init__.py and tell the output Petr. Could you please show your .idlerc/config-main.cfg file? I suppose self.fontSize.get()

[issue24951] Idle test_configdialog fails on Fedora 23, 3.6

2015-08-28 Thread Mark Roseman
Mark Roseman added the comment: Config files affecting tests (and tests affecting config files!) is an issue. Would like to see config files written into a different directory when running tests. Any concerns with doing that? -- ___ Python tracker