[issue30813] test_unittest fails when hunting reference leaks

2017-07-11 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Ah, this fixed issue25746! -- nosy: +serhiy.storchaka ___ Python tracker ___

[issue30813] test_unittest fails when hunting reference leaks

2017-06-30 Thread STINNER Victor
Changes by STINNER Victor : -- resolution: -> fixed stage: -> resolved status: open -> closed ___ Python tracker ___

[issue30813] test_unittest fails when hunting reference leaks

2017-06-30 Thread STINNER Victor
STINNER Victor added the comment: New changeset 22d4e8fb99b16657eabfe7f9fee2d40a5ef882f6 by Victor Stinner in branch '3.6': bpo-30813: Fix unittest when hunting refleaks (#2502) (#2505) https://github.com/python/cpython/commit/22d4e8fb99b16657eabfe7f9fee2d40a5ef882f6 --

[issue30813] test_unittest fails when hunting reference leaks

2017-06-30 Thread STINNER Victor
STINNER Victor added the comment: New changeset 714afccf6e7644d21ce1a39e90bf83cb0c9a74f1 by Victor Stinner in branch '3.5': bpo-30813: Fix unittest when hunting refleaks (#2502) (#2506) https://github.com/python/cpython/commit/714afccf6e7644d21ce1a39e90bf83cb0c9a74f1 --

[issue30813] test_unittest fails when hunting reference leaks

2017-06-30 Thread STINNER Victor
Changes by STINNER Victor : -- pull_requests: +2573 ___ Python tracker ___ ___

[issue30813] test_unittest fails when hunting reference leaks

2017-06-30 Thread STINNER Victor
Changes by STINNER Victor : -- pull_requests: +2569 ___ Python tracker ___ ___

[issue30813] test_unittest fails when hunting reference leaks

2017-06-30 Thread STINNER Victor
STINNER Victor added the comment: New changeset e4f9a2d2be42d5a2cdd624f8ed7cdf5028c5fbc3 by Victor Stinner in branch 'master': bpo-30813: Fix unittest when hunting refleaks (#2502) https://github.com/python/cpython/commit/e4f9a2d2be42d5a2cdd624f8ed7cdf5028c5fbc3 --

[issue30813] test_unittest fails when hunting reference leaks

2017-06-30 Thread STINNER Victor
STINNER Victor added the comment: Using --huntrleaks in regrtest runs this statement in regrtest: unittest.BaseTestSuite._cleanup = False This line comes from bpo-11798. https://github.com/python/cpython/pull/2502 fixes this issue. -- ___

[issue30813] test_unittest fails when hunting reference leaks

2017-06-30 Thread STINNER Victor
Changes by STINNER Victor : -- pull_requests: +2562 ___ Python tracker ___ ___

[issue30813] test_unittest fails when hunting reference leaks

2017-06-30 Thread STINNER Victor
New submission from STINNER Victor: Example of Python 3.5 (same error on master): haypo@selma$ ./python -m test -R 3:3 -v test_unittest (...) == ERROR: test_discover_with_init_module_that_raises_SkipTest_on_import