[issue37223] test_io logs Exception ignored in: warnings

2019-06-12 Thread STINNER Victor
STINNER Victor added the comment: Ok, all errors have been fixed in 3.8 and master. I close the issue. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker _

[issue37223] test_io logs Exception ignored in: warnings

2019-06-12 Thread STINNER Victor
STINNER Victor added the comment: New changeset c15a682603a47f5aef5025f6a2e3babb699273d6 by Victor Stinner in branch '3.8': bpo-37223: test_io: silence destructor errors (GH-14031) https://github.com/python/cpython/commit/c15a682603a47f5aef5025f6a2e3babb699273d6 --

[issue37223] test_io logs Exception ignored in: warnings

2019-06-12 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +13895 pull_request: https://github.com/python/cpython/pull/14031 ___ Python tracker ___ __

[issue37223] test_io logs Exception ignored in: warnings

2019-06-12 Thread STINNER Victor
STINNER Victor added the comment: New changeset 913fa1c8245d1cde6edb4254f4fb965cc91786ef by Victor Stinner in branch 'master': bpo-37223, test_io: silence last 'Exception ignored in:' (GH-14029) https://github.com/python/cpython/commit/913fa1c8245d1cde6edb4254f4fb965cc91786ef -- __

[issue37223] test_io logs Exception ignored in: warnings

2019-06-12 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +13893 pull_request: https://github.com/python/cpython/pull/14029 ___ Python tracker ___ __

[issue37223] test_io logs Exception ignored in: warnings

2019-06-12 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +13892 pull_request: https://github.com/python/cpython/pull/14028 ___ Python tracker ___ __

[issue37223] test_io logs Exception ignored in: warnings

2019-06-11 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +13862 pull_request: https://github.com/python/cpython/pull/13999 ___ Python tracker ___ __

[issue37223] test_io logs Exception ignored in: warnings

2019-06-11 Thread STINNER Victor
STINNER Victor added the comment: Oh. There are still 3 errors in 2 tests: test_writer_close_error_on_close (test.test_io.CBufferedRWPairTest) ... Exception ignored in: <_io.BufferedWriter> Traceback (most recent call last): File "/home/vstinner/prog/python/master/Lib/unittest/case.py", lin

[issue37223] test_io logs Exception ignored in: warnings

2019-06-10 Thread STINNER Victor
STINNER Victor added the comment: Once bpo-36918 will be fixed, I will backport changes to Python 3.8. -- ___ Python tracker ___ __

[issue37223] test_io logs Exception ignored in: warnings

2019-06-10 Thread STINNER Victor
STINNER Victor added the comment: New changeset b589cef9c4dada2fb84ce0fae5040ecf16d9d5ef by Victor Stinner in branch 'master': bpo-37223: test_io: silence destructor errors (GH-13954) https://github.com/python/cpython/commit/b589cef9c4dada2fb84ce0fae5040ecf16d9d5ef -- _

[issue37223] test_io logs Exception ignored in: warnings

2019-06-10 Thread STINNER Victor
Change by STINNER Victor : -- keywords: +patch pull_requests: +13822 stage: -> patch review pull_request: https://github.com/python/cpython/pull/13954 ___ Python tracker ___ _

[issue37223] test_io logs Exception ignored in: warnings

2019-06-10 Thread STINNER Victor
STINNER Victor added the comment: New changeset 4f6f7c5a611905fb6b81671547f268c226bc646a by Victor Stinner in branch 'master': bpo-18748: Fix _pyio.IOBase destructor (closed case) (GH-13952) https://github.com/python/cpython/commit/4f6f7c5a611905fb6b81671547f268c226bc646a --

[issue37223] test_io logs Exception ignored in: warnings

2019-06-10 Thread STINNER Victor
STINNER Victor added the comment: PR 13952 fix many errors, but not of all them. test_io.PyBufferedWriterTest.test_misbehaved_io() logs a warning, whereas test_io.CBufferedWriterTest.test_misbehaved_io() doesn't. It seems like _pyio.BufferedWriter lacks bpo-32228 fix. Extract of the C imple

[issue37223] test_io logs Exception ignored in: warnings

2019-06-10 Thread STINNER Victor
STINNER Victor added the comment: See also bpo-36918 (test_urllib) and bpo-37069 (regrtest: log unraisable exceptions and uncaught thread exceptions). -- ___ Python tracker _

[issue37223] test_io logs Exception ignored in: warnings

2019-06-10 Thread STINNER Victor
New submission from STINNER Victor : bpo-18748 modified io.IOBase finalizer to no longer silence close() exception in develoment and in debug mode. The commit 472f794a33221ea835a2fbf6c9f12aa2bd66d1b0 fixed a few destructor errors in test_io, but there are still a few: test_uninitialized (tes