[issue25747] test_idle failure in leaks searching mode

2016-06-02 Thread Terry J. Reedy
Terry J. Reedy added the comment: idlever.py is now gone in 3.6. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue25747] test_idle failure in leaks searching mode

2016-05-16 Thread Roundup Robot
Roundup Robot added the comment: New changeset 9e1c859562bb by Terry Jan Reedy in branch '2.7': Backports: #25747: remove bad test. #27044: stop test_idle from leaking. https://hg.python.org/cpython/rev/9e1c859562bb -- ___ Python tracker

[issue25747] test_idle failure in leaks searching mode

2016-05-15 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- assignee: -> terry.reedy resolution: -> fixed stage: -> resolved status: open -> closed ___ Python tracker ___ _

[issue25747] test_idle failure in leaks searching mode

2016-05-15 Thread Roundup Robot
Roundup Robot added the comment: New changeset 5f561804bc8e by Terry Jan Reedy in branch '3.5': Issue #25747: remove undependable and possibly useless test. https://hg.python.org/cpython/rev/5f561804bc8e -- nosy: +python-dev ___ Python tracker

[issue25747] test_idle failure in leaks searching mode

2016-05-15 Thread Terry J. Reedy
Terry J. Reedy added the comment: In msg255485 'copied replacements' should be 'copied with replacements'. But 'import idlever' is not a reliable replacement for "# trigger a warning". I wonder whether 'import_fresh_module' really executes the module twice, which seems foolish, or mere displa

[issue25747] test_idle failure in leaks searching mode

2016-05-15 Thread Terry J. Reedy
Terry J. Reedy added the comment: >From Mantin Panter's msg265606: == FAIL: test_idlever (idlelib.idle_test.test_warning.ImportWarnTest) -- Traceback (most rece

[issue25747] test_idle failure in leaks searching mode

2016-05-07 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: import_fresh_module() emits the deprecation warning twice. >>> from test.support import import_fresh_module >>> import_fresh_module('idlelib.idlever') /home/serhiy/py/cpython-debug/Lib/test/support/__init__.py:166: DeprecationWarning: The separate Idle versi

[issue25747] test_idle failure in leaks searching mode

2015-11-27 Thread Terry J. Reedy
Terry J. Reedy added the comment: The test method was added in 3.5. with warnings.catch_warnings(record=True) as w: warnings.simplefilter("always") import idlelib.idlever self.assertEqual(len(w), 1) self.assertTrue(issubclass(w[-1].category,

[issue25747] test_idle failure in leaks searching mode

2015-11-27 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: $ ./python -m test.regrtest -uall -R 3:3 test_idle [1/1] test_idle beginning 6 repetitions 123456 test test_idle failed -- Traceback (most recent call last): File "/home/serhiy/py/cpython-debug/Lib/idlelib/idle_test/test_warning.py", line 76, in test_idlev